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
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.