Hi
I am trying to replace all tags e.g "JobNoTag" with an actual Job number that exists within a field of a Jira ticket. I need it replaced in the description field
so e.g.
Fix Version field has value: 123456
I want the "<JobNoTag>" value get replaced with the fix version value in the description text below:
Description:
This <JobNoTag> was raised yesterday. The <JobNoTag> is related to etc.ect
The following is throwing rendering error:
I tried this {{issue.description.replace("<JobNoTag>",{{issue.fixversions.name}})}}
The following is throwing loop error because the automation rule has trigger from another rule checkbox which I need:
{{issue.description.replaceAll("<JobNoTag>",{{issue.fixversions.name}})}}