I'm using concat(String str) to add a string of text in an Automation rule but would like to see it at the start rather then then end.
What I'm using:
{{issue.summary.concat(" Add My Text - ")}}
Current Result = Issue Summary Add My Text -
What I'd like:
Result = Add My Text - Issue Summary
That doesn't seem to work just adds "Add My Text - " and doesn't populate the trigger issue summary. I may have failed to specifiy that in the automation I am creating a subtask.
The goal is to create a new subtask and have the summary of this new item as
(" Add My Text - ") and the triggerissue.summary
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, Apologies...it should be like below.. please check and let me know..
Add My Text {{issue.summary}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks again @Kalyan Sattaluri . In typing this out to you I realized my issue was that I was using {{issue.summary}} rather than {{triggerissue.summary}} in the condition!
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.