Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jira Quick-filter to show all task with subtasks assigned to current user

Tags:

jira

jql

Currently, I have a quick filter to show me my task that does this:

assignee = currentUser()

This works ok, but doesn't show me tasks that are assigned to someone else, but have subtasks assigned to me. Is it possible to make it show me both tasks assigned to me, and tasks that have subtasks assigned to me?

like image 774
Robert Kovačević Avatar asked Feb 01 '13 14:02

Robert Kovačević


People also ask

How do I make subtasks visible in Jira?

You should go to board settings -> swimlanes and choose Stories. In this case subtasks will be under the parent. I guess, the second board is a Scrum board. Subtasks are not visible in the Scrum boards in the Backlog view.

How do I add an assignee filter in Jira?

You can go to Board-> Configure->Quick filters to add. For ex: JOE in the "Name" field and "assignee = joe" in the "JQL" field. The Assignee dropdown is a very useful feature for Daily meeting.

How do I add a label to a quick filter in Jira?

On your board go to "configure board". There you can add a quick filter. Type in a name, and in the field JQL you can type labels !=


1 Answers

Create a filter for all of your subtask from the following JQL:

issuetype in subtaskIssueTypes() and assignee = currentUser()

Then, using Craftforge JQL Functions Plugin, use the following JQL to find their parents:

issue in parentIssuesFromFilter("filter name or its id")
like image 85
Kuf Avatar answered Sep 28 '22 08:09

Kuf