Hey,
I'm currently stuck on a problem with one of our automtions in Jira. Here is the entry in the audit log:
When I'm looking in the history of the Story, I can see that the Story is in the status "ON STG" since the 26th of Novemeber 2024:
So in my logic there shouldn't be any execusion of the rule, why does it try to move the Story any way?
Here is my config of the automation:
Thank you!
Niklas
Hi,
you're using the parent branch so it seems that the trigger issue is a subtask of the story .
basically your rule is, when an issue is transitioned and it has a parent then make a transition in the parent.
Kind regards,
Dick
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm trying to move the parent (standard task) when all the sub tasks are in the same status. The first check if all sub tasks are in the same status seems to be working but the second check if the parent already is in the same status is not working the way it should.
The automation always moves the parent, even if it already reached the right status.
Best
Niklas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What if one subtask is ahead and the remainder is all on one status?
Could you be "saved" by looking up the status of the task that is least progressed in the order of statuses in your project ? Said order should be "known" in the automation.
That would require a totally different approach from your original plan.
Kind regards,
Dick
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Dick ,
now that I'm thinking about that, it really sounds better that way.
I totally missed the point, that we could get some inconsistencies that way.
I will have a look into that.
Best
Niklas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I relooked at your problem statement and this is my understanding.
You have a story or Task and n number of subtasks under the Story/Task.
Let's say all of them are in To DO status.
Team will transition the status of subtask and if all subtask have same status say In Progress then automation should trigger and update the status of Story/Task.
This is the rule I propose
Let me know if this works for you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Niklas Zarnecke
Your requirements still need more details. However, after analyzing your screenshot, there might be some inconsistencies.
Which type of tickets are you targeting? Sub-task, standard task, or epic?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Duc Thang TRAN ,
when all my sub-tasks are in one status the parent should be moved as well.
It seems like the first check is working but the automation trys to move the the parent (standard task) anyway, even if the parent already reached the right status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Before branching into parent, can you try copying the trigger Issue values in smart variable. Then use those values to compare with parent status.
See if this helps resolve your issue.
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 must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.