I have a custom field in Jira for "Community/Entity" that prompts me to select a community, then prompts me to select an entity #, then merges the two dropdown selections into one field with the Custom Field ID # (10031). I am trying to write an automation where if the parent has the "Community/Entity" field filled out, automation will fill the "Community/Entity" out for the child issues.
I have created a variable name: customval
Smart Value: {{issue.parent.customfield_10031.value}}
Here is the "edit issue" value I am using:
{"fields": { "customfield_10031": {"value": "{{customval}}"} } }
My branch is For JQL parent = {{issue.key}}
Then Edit the issue additional field:
{ "fields": { "customfield_10031": {"value": "{{customval}}"} } }
-------------------------------
When this automation runs it returns successful, but only the community updates and not the entity#.
Thank you in advance for your help!
MG