Is there a way I can run a query to see what open sub-tasks there are against closed parent tickets?
I have stories that are pretty old, which still have open sub-tasks on, I would like to clear these up and have created a query to see sub-tasks against the parent, but now I want to know if the parent has been completed in order to close those sub-tasks too.
Not ootb you will need a 3rd party app that will extend the JQL options in Jira.
You could look at:
Thanks for reaching out to the community.
In addition to 3rd party add-on, as a workaround, you can achieve the use case by performing the below steps
project = "XXX" AND issuetype = Story AND status = Done
(issuetype = Sub-task AND status NOT IN (Done)) AND parent IN (Issue keys fetched from the export separated by comma)
Let us know how this goes.
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.