Hi everyone!
Creating an automation to synchronize status is very easy. The problem is, when you move the first subtask, the parent item also moves along. And I want it to only move when the last subtask changes status. Help me, please!
Hi @Emerson - You'll want your rule to look something like this:
Hi @Mark Segall - In "status = Done" I want to change to "status != Parent Item Status". How do I represent this in JQL?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To clarify, are you saying you want the condition to check for when all child statuses no longer equal the same status as the parent? If so, it would be something like this:
status != {{issue.parent.status}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you getting any errors or it's simply not passing the condition?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you include a screenshot of the rule configuration so far?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It looks like your last step is "Same Status (loop)". You should change it to Copy From Trigger Issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I changed it to Copy From Trigger Issue and when I moved the subtasks from "To Do" to "Doing", the parent item didn't move along.
He only equaled the status when he went to "Done".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think I see the issue. It's your condition. You should not be using parent status. You're already branched into the parent so it won't have a parent and thus, the status is failing to pull anything in. The condition needs to be this:
status = {{issue.status}}
where {{issue}} = the parent issue because you're branched into it.
Make sense?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi there, I followed the above and it's working great, however, say for example I have 10 sub-task, I only want them to change the main parent card's status once all of them are the same. Is this possible, if so how?
Currently, when I change 1 status the whole card moves?
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.