Hi everyone,
I’m working on an automation in Jira and need some help. Is it possible to extract a specific field from the task description to automatically set the assignee for a ticket?
For instance, I have a sent_user field in the description that contains a Gmail address, and I want to use this field to automatically assign the ticket to that user.
Any tips or examples on how to set this up with automation would be greatly appreciated!
Hello, Good day. You can try to update a custom field with the email address of the user from the description and then copy the value from the custom field to assignee field.
Hi, thanks for your message! I used the following expression in the comment section:
Hi, @{{issue.description.match("(sent_user\":\"([^\"]+)").replaceALL("@","")}} this is test automation!
The output in the comment section was: Hi, @sripal.martha this is test automation!. However, it did not tag me in the comment section. Additionally, the automation rule failed to auto-assign the issue to me.
For the assignee, I used the smart value {{issue.description.match("sent_user\":\"([^\"]+)").replaceAll("@", "")}} but it didn’t assign the issue to me either.
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.
audit log says user doesnot exist or you dont have required permissions but i'm the administrator for the project!
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.