Hi,
Looking to see if Automate can update a summary title after an email submission, as the email uses pipes "|" to show the priority and assigning in the summary.
Strip Assigning and assign it to the assigning field
Strip Priority and assign it to the priority field.
Strip Reporter and assign it to the report field.
Sample:
Test Summary | FOO User |Medium| John Smith Reporter
Hi @Harry,
Welcome to Atlassian Community!
If the summary will always have the same format the you can use the split String separator function to get each of the 4 subsections, something like this:
{{issue.summary.split("|").first}} -> Test Summary
{{issue.summary.split("|").second}} -> FOO User
Thanks @Mikael Sandberg
Let me try that, can I use the above items to assign the new fields "FOO" to an assigning?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In order to set the assignee you would first have to find the Atlassian Id for that user, which you can do by doing a web request to the Find user endpoint.
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.