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.
I'm busy setting up some automation rules to post comments to a parent if changes are made to the child's description.
It works as intended, but it posts the description before the change is saved, and not the new value. How would I go about posting the new value, and not the old value?
I've also tried {{issue.description}}. Any suggestions would be appreciated
For Linked Issue switches contexts the other ticket, so when it comments with a description, it will use the other ticket's description.
The solution would be to put the new description in a variable before switching contexts.
See screenshot in reply to Juan's comment
If I understand your scenario correctly, you need to use the {{triggerIssue}} as the source of data to update the linked issues.
The meaning of {{issue}} can change in a rule based on the rule structure. For example:
And so for your scenario, you could the Comment action to just use {{triggerIssue.description}}
Kind regards,
Bill
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.
Hey @Juan Carlos Vera
Thanks for the suggestion, it pointed me towards the actual issue.
So because the context was switched back to the parent ticket (with For Linked Issue), it posted the parent ticket's description instead of the child.
This can be solved by first populating a variable before switching contexts.
Screenshot of working solution below:
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.