Usecase:
I'm creating an automation: When Epic is created, auto create a task inside of it, fetch values from custom field type "Label" from Epic, and populate it into task summary.
My attempts of using [{{triggerIssue.customfield_10037.value.get(0)}}] or [{{triggerIssue.customFieldName.value] were unsuccessful.
Could you please help?
Hello @Leonid Krizhanovskiy
If customfield_10037 is the labels field,
You can just reference it as {{triggerIssue.customfield_10037}}
which will give you a list of (comma separated) labels.
You can just append it to your newly created issue's summary as belwo for example:
{{triggerIssue.summary}} - {{triggerIssue.customfield_10037}}
If issues, please share screenshot of your rule, Hope it helps. Thanks!
Thanks that helped!
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.