I have a bug filter for backlog similar to
sub-bugs are not shown.
How to include subbugs in the filter?
Hi @ETT As
If you have created a issue type as sub-bug you can try this JQL
project = Engineering and issuetype in (Bug, sub-bug)
if you are referring to the native sub-task, it's not possible to retrieve using the native JQL function, as if we include the issue type sub-task it will bring all the subtasks in the project, even the ones that are not under the bug. You need to use a third-party plugin to achieve the requirement.
Here is an example of how to get all subtasks belonging to issue type story using JQL Search Extensions for Jira & reports
issue in subtaskOf("type= Story")
Thank you.
I have a remaining issue. The filter I'm working on excludes completed items. Stories are sometimes moved to done with active bugs for backlog. Incomplete Sub-Bug(s) type is not captured by the filter when a parent Story is in "Done" state and filter for Status excludes "Done". I will try to create a new filter to capture those.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.