Hello Community,
Can you please advise how can I copy a field value from Initiative to Epic? Epic ticket is linked to Initiative through "parent link". I can do that with Epic to Story without any issues, using the Copy Value From Other Copy Value From Other Field Post-Function and Automation Rule, but when it comes to Initiative issuetype it doesn't do anything. Any suggestion is highly appreciated. Thank you .
Kay,
Solved! Go to Solution.
Hello @Kay
I'm looking for an Automation rule which can copy a value from a cascading type field of an Epic to its child tasks (issuetype Story), can you please share your code for this with me?
Thank you in advance!
Kind Regards
Hrisi
Hi there,
You can use this:
{
"fields": {
"Client": {
"value": "{{issue.Client.value}}",
"child": {
"value": "{{issue.Client.child.value}}"
}
}
}
--------
"Client" = Name of Field
Client.value = first value in cascade drop down menu
Client.child.value = second drop down menu value
--------
Also check out Ravi's video here: https://www.ravisagar.in/videos/jira-cloud-automation-copy-cascading-select-list-sub-task
It's for a sub-task but you can adjust for copying from an Epic.
Good Luck!