Hide Epics containing sub-tasks from Jira board

Ron Becker November 14, 2018

I want to filter stories and their related sub-tasks on a Jira Kanban board. Swimlanes of the Kanban board are based on stories.

The query behind the board is currently: "project = OTE AND type != epic ORDER BY Rank ASC"

Unfortunately Epics containing sub-tasks are also appearing on the board.

Is there a possibility to hide the epics with sub-tasks from the board with for example ScriptRunner functionality?

1 answer

1 accepted

0 votes
Answer accepted
PADMA KOTHAKOTA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 14, 2018

Hi @Ron Becker,

 

I think you can use the below filter. It will show only those issues which are not linked to epic.

project = OTE AND type != epic and  "Epic Link" is EMPTY ORDER BY Rank ASC

PADMA KOTHAKOTA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 15, 2018

Hi @Ron Becker,

 

You can also use the below filter query,It will not show the subtask issue which has linked with Epic.

 

project = OTE AND type != epic and issueFunction not in subtasksOf("issuetype = epic")

Suggest an answer

Log in or Sign up to answer