Hi Community,
I am using "Parent Link" field (added on Child Issue screen) to link between a Parent (Initiative) and Child (Portfolio Epics).
My use-case is:
Please guide on how I can set up an automation regarding the above by using Scriptrunner, Jira automation, JMWE app or Post-function.
Thanks
Hello @Digvijay Singh Gehlot
You can find some useful information in this KB:
You can use an automation rule to accomplish your requirement.
You will need to identify the custom field ID for the Parent Link field, which is explained in the above article.
Create your rule thus:
Trigger: Issue Transitioned
From: Cancelled
To: Open
Condition: Issue Fields Condition
Field: Issue Type
Condition: equals
Value: Initiative
Branch Rule: Related Issues: JQL
JQL: "Parent Link" = {{triggerIssue.key}} and issuetype=Epic
Action: Edit Issue
For the Edit Issue action refer to the information available in the KB. You will have to use Advanced Editing with JSON rather than selecting a field from the list.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.