Filter to show sub tasks of a filtered list of parent tasks

后端 未结 5 1658
深忆病人
深忆病人 2021-01-03 18:08

I have a JIRA filter which returns all the fixes in a future release:

project = MyProject AND fixVersion = \"1.1.1\" and issuetype in standardIssueTypes() and

5条回答
  •  醉酒成梦
    2021-01-03 18:50

    Use Script Runner plugin and a query like:

    issueFunction in subtasksOf("project = MyProject AND fixVersion = 27_04_2013 and status != Closed"))
    

提交回复
热议问题