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, I'm trying to run the following automation to keep track of when software updates for a certain product have released. When it updates, I want to update the backlog so that I'm constantly tracking 6 updates back from the current version.
set custom field "_6VB" to "{{%_5VB}}"
set custom field "_5VB" to "{{%_4VB}}"
set custom field "_4VB" to "{{%_3VB}}"
set custom field "_3VB" to "{{%_2VB}}"
set custom field "_2VB" to "{{%_1VB}}"
set custom field "_1VB" to "{{%Last Update}}"
set date custom field "Last Update" to now
My problem is that when I run it like this, sometimes the date fields don't populate in order, causing one date to drop and at least two fields reporting the same date at the end of the automation.
I thought of putting 'dummy' steps in between these (see below), forcing the automation to slow down its replacement of each preceding field; didn't help.
(the final automation I tried went like this:
set custom field "_6VB" to "{{%_5VB}}", set custom field "Version" to "*", set custom field "_5VB" to "{{%_4VB}}", set custom field "Version" to "**", set custom field "_4VB" to "{{%_3VB}}", set custom field "Version" to "***", set custom field "_3VB" to "{{%_2VB}}", set custom field "Version" to "****", set custom field "_2VB" to "{{%_1VB}}", set custom field "Version" to "*****", set custom field "_1VB" to "{{%Last Update}}", set custom field "Version" to "******", set date custom field "Last Update" to now, and set custom field "Version" to "***DONE***"
Any thoughts as to why my cascade idea isn't working? Thanks!
Hi @csteel
You could split up your rule into multiple different rules which would guarantee the date fields always update in the same order, for example:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.