Hi all,
In this Atlassian community website, I found a simple automation to track the approvals for a change request. However, in our company, a change request will go through different levels of approvals before the change is implemented in production environment. These approver fields, which may contain 1 or many names, are: Techical Approvers, Business Approvers, Commercial Approvers, and CAB Approvers.
The automation I copied from one of the posts here, includes an action as....
{{#issue.Approvals}}
{{#approvers}}
Name: {{approver.displayName}}
Action: {{approverDecision}} \\
{{/}}
{{/}}
My question is, how I could include the custom field name (mentioned above) before the approver's name?
Cheers,