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

后端 未结 4 1644
北荒
北荒 2021-02-07 19:14

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

4条回答
  •  长情又很酷
    2021-02-07 19:24

    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")
    

提交回复
热议问题