Heads up! On March 5, starting at 4:30 PM Central Time, our community will be undergoing scheduled maintenance for a few hours. During this time, you will find the site temporarily inaccessible. Thanks for your patience. Read more.
×HI Community,
I have created a Global Jira Automation Rule, where I want to transition the Parent (Initiative) to Prioritized/ Not-Prioritized status automatically based on Children (Portfolio Epic) (i.e. CRIS and GIB) transition to Prioritized/ Not-Prioritized status.
Problem:
Excepted Result should be:
Please find the below Global Jira Automation Rule (Note: I changed the name of Projects, Statuses and Transition)
Please guide on how I can move the Parent always to Prioritized status automatically when one child moves to Prioritized and another moves to Not-Prioritized via
Scriprunner, JMWE app, or Workflow Conditions/Post-Functions.
Thanks
I looked at your logic in the automation and was wondering if you can replace it using a single lookupissue using jql and then from the number of elements returned, adjust the status of the initiative.
lookupissues = project in (CRIS, GIB) and "parent link" = {{issue.key}} and status = "Prioritized"
Then use the lookupissues.count to see if it is greater than 1.
if so, set the Initiative status to Prioritized, otherwise non-prioritized.
It would definitively be shorter and easier to understand :)
Dick
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.