Hi, I have the following hierarchy defined,
Initiative -> Feature -> Epic -> All other Standard Issue Types -> All Sub-Task issue types
I am implementing post function to get higher hierarchy to transition based on the Lower hierarchy issues transition.
I managed to get it going smooth till Epic Level where the default linking is applied.
From Epic to Initiative we use "Parent Link" field from Portfolio Plugin to get the linking done.
Now, I need your help to get the Transition of Initiative based on the Transition of Feature and Transition of Feature based on the Transition of Epic.
Please provide help based on the available default option or based on the JSU, If possible help with Script runner script to implement this.
I know i am expecting too much from you guys but i am helpless without you people.
Hello @Devi karthikeyan ,
Natively there is not a way to do this, however there is an option using Automation for Jira , with a note for anyone on the Jira cloud platform that finds this thread this will currently only work on the Server platform as the needed JQL functions are not avaliable in Jira Cloud at this time, please vote for the following Request if you are on the Jira Cloud platform and you would like to be able to implement this process with Automation rules:
To set this up there are a few layers in the JQL filter, please refer to the following documentation as a referance point for the following filter:
In my Example I am using the following configuration, this my be different for you, noting i Set up a dedicated project for the initiatives as covered in "Configuring initiatives and other hierarchy levels" for a multi project configuration:
The filter can be set up to isolate the rule to Only issues in a single Plan OR to any issue in the project using one of the following Filters
Plan 1 Only:
"Parent Link" in issuesInPlan(1) AND issuetype = Epic
Any Plan affecting the issues incase the issues are split across multiple plans:
issuetype = Epic
Create a Global Automation Rule with:
parentissuesof("{{issue.key}}")
Using this automation, any time an Epic In project ASDF is transitioned to In Progress it will trigger the parent initiative to also be transitioned to the in Progress status.
Hope this helps.
Regards,
Earl
Is there a way to accomplish this without Script Runner?
I am using Advanced Roadmaps (formerly Portfolio) and have set up an Initiative issue type with this structure Initiative -> Epic -> All other Standard Issue Types -> All Sub-Task issue types. Epics will be set with a 'Parent Link' to the initiative. I have been unable to figure out how to update the Inititiative using Jira Automation.
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.
Hello @Michael
Thanks for that. Do you have any idea on how to implement the following :
- When the Feature is transitioned to Done
- Then transition all child epics to Done as well
Thanks,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Abdelwahed SAMRI is Feature an issue type? If you look at my example, the structure is Initiative -> Epic -> etc. this is the only way that I know of that allows you to have epics as children under an issue type.
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.