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.
Dear All,
I am working on an automation to send update emails when the value of the "Customer temp" field is changed I have used some smart values for the automation as under
Customer Temperature has Changed from {{changelog.Customer Temperature.from}} to {{issue.fields.Customer Temperature}} !!!
I get the result as "Customer Temperature has Changed from 12821 to Happy !!!"
where i dont understand why I am getting "12821" value from
expected result: "Customer Temperature has Changed from Unhappy to Happy !!!
I appreciate your helps in advance.
Hi Akram,
Since it is only firing on the value of the field changing, try this:
[ {{fieldChange.fromString}} ] to [ {{fieldChange.toString}} ]
Hi @John Funk
Thanks for your reply, I found the {{changelog.nameofthefield.fromstring}} also useful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What type of customfield is "Customer temp'? Is it a single select field?
Regards
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.
You probably have to call .Name or .Value to get the actual value. Right now, it's picking the ID of the option.
I hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have used both following cases but didn't worked.
Customer Temperature has Changed from {{changelog.Customer Temperature.from.Name}} to {{issue.fields.Customer Temperature}} !!!
And
Customer Temperature has Changed from {{changelog.Customer Temperature.Name}} to {{issue.fields.Customer Temperature}} !!!
let me know if i making any mistake.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear all
I have found out that using the smart value {{changelog.Customer Temperature.fromString}} is giving me the previous value of the field in automations.
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.