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
For e.g.
If there are 2 tasks A and B. Task B is dependent on Task A. If I shift the timelines of Task A, can the timelines of task B be shifted automatically?
Hi Kartavya - Welcome to the Atlassian Community!
Yes, this can be done with an automation rule. You would create a Field Value Changed trigger for the rule, then add a condition for whatever is linking the two issues so it knows which one to update.
Finally add a new action for Edit Issue and choose the same field that you chose in the trigger step.
Then paste this in the value. {{triggerissue.duedate}}
That assumes that the due date changed in the original issue. Change out the field name if that is different.
Hi, @John Funk! Would you be able to post a screenshot of how to do this?
I'm in Work Management. When I create an issue, I'm automating 3 subtasks (ie — draft, review, revise) with due dates 5, 10, and 15 business days out ({{now.plusBusinessDays(5)}}, etc). I'm also auto-linking them by automating a link to the previously created task. If I push the due date of "review" to the next day, will the automation you're talking about here push the subsequent child issue "revise" by a day as well?
** This is a test for a bigger project, just trying to lay the groundwork!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Emma,
I think I would create the automation rule first for the creating the subtasks based on what you have above and in my screenshot below.
Then I would do another rule based on the Draft issue's due date getting updated that it updates the other two.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The code for the Due Date of the Review would then be:
{{triggerissue.duedate.plusBusinessDays(5)}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I had a sequence like the below and changed the due date of the first subtask ("draft") by 1 day, how would that look? Would you be able to post a screenshot with the triggerissue.duedate code?
draft: due 5 business days from parent issue creation (with changed due date, 6 days)
revise: due 8 business days from parent issue creation (with changed date, 9 days)
review: due 17 business days from parent issue creation (with changed date, 18 days)
New to Jira, so this is very helpful! Thanks so much!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, I thought I commented earlier, but it doesn't look like it got saved/posted.
I would create separate rules for each of those based on the the due date change as the trigger and then a condition identifying whether it is Draft, Revise, or Review.
But you will need to have these linked in some way to be able to tell which issue to update.
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.