The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hey,
I want to create a jira automation in which I try to extract all autors who have the email domain xxx@special-domain.de to route them to a team queue.
I can't achieve the condition.
Cheers,
Thies
you could use the substringAfter method of smart values:
{{issue.reporter.emailAddress.substringAfter(„@„)
Best
Stefan
Hi, Thies,
You can try accessing that information using:
{{issue.reporter.emailAddress}}
You can use other user fields instead of reporter according to your use case. From that you can split the e-mail value:
{{reporter.emailAddress.split("@").get(1)}}
get(1) to get the second element of the array, since the username preceding the @ is get(0)
You could then do an advanced compare with the hardcoded string.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello everyone, Hope everyone is safe! A few months ago we posted an article sharing all the new articles and documentation that we, the AMER Jira Service Management team created. As mentioned ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.