List all JIRA tasks that are not blocked by other tasks

大城市里の小女人 提交于 2019-12-03 13:56:23

Use this clause from http://www.j-tricks.com/jqlt-links-functions.html:

issue not in linkedIssuesInQuery("status = Open", "is blocked by")

If you have the ScriptRunner add-on, you can use it to do this:

resolution = unresolved AND assignee = currentUser() AND (issueFunction in linkedIssuesOf("resolution is not empty", blocks) OR issueFunction not in hasLinks("is blocked by"))

I've created a new filter named "All active issues" that list all issues that are open, in progress or re-openned.

And I've used that new filter in my query instead of "All Issues".

Seems solved :)

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!