How do I copy multiple cascading custom fields from a Jira service management project to a Jira software project by using an automation rule? Please resolve this issue.
In automation, choose More Options -> Additional fields.
CascadingFieldName is the custom field name.
{
"update": {
"CascadingFieldName": [
{
"set": {
"value": "{{triggerIssue.fields.CascadingFieldName.value}}",
"child": {
"value": "{{triggerIssue.fields.CascadingFieldName.child.value}}"
}
}
}
]
}
}
Hi Tansu Akdeniz,
Thanks for the reply, It is working for only one cascading field, but I have a total of four cascading fields. Please help us to resolve this issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just change the JSON according to your needs.
Sample for 2 cascading;
{
"update": {
"CascadingFieldName": [
{
"set": {
"value": "{{triggerIssue.fields.CascadingFieldName.value}}",
"child": {
"value": "{{triggerIssue.fields.CascadingFieldName.child.value}}"
}
}
}
],
"CascadingFieldName2": [
{ "set": {
"value": "{{triggerIssue.fields.CascadingFieldName2.value}}",
"child": { "value": "{{triggerIssue.fields.CascadingFieldName2.child.value}}"
}
}
}
]
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.