You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello all,
Trying to automate somethings in a new project and here we use gopgle chat. So I create a automation to notify when tickets are on test. But having some problems to send a message like: Hey! We have a new ticket on test: www.site.jira/FYI-2333 .
Bellow the JSON:
{
"text": "Hey! We have a new ticket on test: www.site.jira/".concat({{issue.key}})
}
But we are receiving erros. If I only send "Hey! We have a new ticket on test!" everything is ok.
So, how to concat String with smart value?
Hi @isfigueiredo :
I think this should work:
{
"text": "Hey! We have a new ticket on test: www.site.jira/{{issue.key}}"
}
Although you might want a full URL that's valid:
{
"text": "Hey! We have a new ticket on test: http://YOURSITE.atlassian.net/browse/{{issue.key}}"
}
(So I made the hostname similar to a real one, and with the browse/ path added.)
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.
Awesome - glad to hear it worked! Would you be so kind as to click on the [Accept answer] button up there? Thanks?
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.