Dear community, need help.
I create custom field Должность (Post), with type Select List (cascading).
Then I added this field to the request creation and editing screens.
After that, I specified the context for all issue types and for all projects.
But when I create automation, i can't find this field to copy it to another project.
At the same time, there are other fields in the list of fields to configure, created in a similar way.
How to add the required field to the selection list?
You are unable to find fields of type "Select List (Cascading)" in Jira Cloud due to automation.
To indicate some value for it, you will need to make use of the smartvalue feature, expanding the "More options" option and using JSON to reference the values of the Select List Cascading field
Luckily I have a payload that can help in this scenario of copying the value to another project/issue. Just add the values you want. See:
{
"update": {
"CUSTOM_FIELD_NAME": [
{
"set": {
"value": "{{triggerIssue.fields.CUSTOM_FIELD_NAME.value}}",
"child": {
"value": "{{triggerIssue.fields.CUSTOM_FIELD_NAME.child.value}}"
}
}
}
]
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.