In Settings-> Issues -> Issue Type Hierarchy
I currently have a hierarchy of:
- Programme
- Initiative
- Epics
- Story (and all other standard types)
- Sub Task
I want to add a second issue type at the same level at initiative:
- Programme
- Initiative, Milestone
- Epics
- Story (and all other standard types)
- Sub Task
I'm hoping I can use it (Milestone) on Advanced Roadmaps to show major milestones like Customer deadlines.
My concern is that when I try to add it to the hierarchy I get this message:
Hi @T,
adding to what @sudhakar already wrote, you can use JQL Search Extensions to filter linked issues that are in particular status. So far it is not possible to satisfy ALL states with a single query and you will have to do it one by one, but if you are most interested in Closed issues where links are still open, then you can use status categories instead of statuses like:
cloud: statusCategory = Done and linkedIssueStatusCategory in ("To Do", "In Progress")
server: statusCategory = Done and issue in linkedIssueStatusCategory("To Do", "In Progress")
Focusing on status categories will satisfy all done or not done statuses, regardless of how you named them. If you prefer to use statuses then you will have to check them one by one like:
status = Closed and linkedIssueStatus in ("To Do", "In Progress", "Custom status 1")
status = Done and linkedIssueStatus in ("To Do", "In Progress", "Custom status 1")
status = "Custom status done" and linkedIssueStatus in ("To Do", "In Progress", "Custom status 1")
Regards
Arkadiusz Głowacki
Hello,
Thanks a lot for your response.
And do you know if it is possible to find such link with : Scriptrunner (we have this plugin)?
https://scriptrunner.adaptavist.com/latest/jira/quickstart.html
Thanks for your help,
Regards
Thierry Bourhis
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
I have no experience with scriptRunner so, unfortunately, I can't help with this plugin.
Regards
Arkadiusz Głowacki
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I know this answer was solved a while ago, but if you are still looking for a ScriptRunner solution you could use this filter:
status != "IN PROGRESS" AND issueFunction in linkedIssuesOf("status = \"IN PROGRESS\"")
Or for items that are not closed but are linked to closed items:
resolution is EMPTY AND issueFunction in linkedIssuesOf("resolution is not EMPTY")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
We can get the list linked issues that are in different status using the plugin" JQL Search Extensions" .
JQL : issue in linkedIssueStatus("To Do") is gives us list of linked issues which are in To Do status like that we can get the list of issues in different status .
Regards,
Sudhakar
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.