Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List all JIRA tasks that are not blocked by other tasks

Tags:

jira

jql

Using JIRA 4.4.3,

I've created a filter that list all the tasks that: - The current user is assigned to; - are Open; - are not blocked by any other task.

To make it clear: the task that are ready for a user to work on.

We've installed the Craftforge JQL Functions plugin, and I've come with the following JQL query:

assignee = currentUser()
AND status in (Open)
AND issue NOT IN linkedIssuesFromFilter("All Issues", "Blocks", "Outward")

The problem is that when an issue that was blocking another issue is resolved, the "Blocks" link still exist -- and I don't want to delete it. But my query doesn't check if the linked issue is closed/resolved or not.

How can I add a condition "inside the IN statement" that will only return queries that are blocking the current task AND that are still OPEN.

like image 647
FMaz008 Avatar asked Feb 06 '12 15:02

FMaz008


2 Answers

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"))
like image 45
Xiong Chiamiov Avatar answered Sep 20 '22 22:09

Xiong Chiamiov


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

issue not in linkedIssuesInQuery("status = Open", "is blocked by")
like image 60
Donald Taylor Avatar answered Sep 21 '22 22:09

Donald Taylor