I want to create the Jira roadmap.
I want to find epics related to issues(story, task, subtask) by issue(story, task, subtask) assignees. (not epic assignee)
I know Script Runner plugin, but I don't want to use plugin.
Hi, @이선호 Sunho Lee !
Correct me if I misunderstand your case.
You have Epic "KEY-1" and want to find all linked Tasks by "relates to" link-type which have assigned on "Name"?
For this case you can try use that JQL:
issue in linkedIssues(KEY-1,"is blocked by") and assignee in (Name) and issuetype in (Task)
The result will be all issues with issuetype "Task" where current assignee is "Name" and its all has link "relates to" with Epic "KEY-1".
Also you can look throught the documentations about Advanced search reference - JQL functions.
Feel free to contact! 😉
thank you for reply 🙂
I think my explanation was lacking.
I want to find "epic" from assignee's issues included in epic,
even though the assignee of task is not equal as the assignee of epic.
I want to know which epic does this issue is included.
not using epic key.. just using assignee and assignees' task to find it's parent epic.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.