My Kanban board is set up so that Epics belong to the Product Managers who then create tasks from the Epic for other team members. I have the statuses To Do, In Progress, Test, Blocked and Done. I am trying to automate the behavior of the Epics so they move between statuses based on when people are moving the tasks between statuses and I've cracked it apart from one scenario :-
When the children of an Epic are in more than one different status, move the Epic to In Progress.
This is to perform as a "In Progress is the default" as I have other rules which are such as "When all children are in Test then move Epic to test". I have been trying with the different options in the Rule builder but getting nowhere near a solution.
Note : Installing a plug in for more functionality is not an option for me
Hi @Julia -- Welcome to the Atlassian Community!
From what you describe, it is possible your different rules are colliding and updating the Epic repeatedly.
For a scenario such as this, I recommend using one rule to update the Epic for the basic case. To do so, please try:
Kind regards,
Bill
Thanks, I've picked up a a lot of pointers from what you have said and decided to concentrate on putting the existing rules into one as the first phase:-
All in To Do = Move Epic to To Do
All in Test = Move Epic to To Test
All in Blocked = Move Epic to To Blocked
At least one In Progress = Move Epic to In Progress
I'll look at the other Epic scenarios and other actions performed on the tasks apart from transitioning statuses at later date. Also worth noting we don't use Stories and only the statuses of Tasks need to effect the Epic. I have had an attempt at a new rule, but its very messy, especially as I cannot find a "If/then/Else" component to use, only IF. Can the below be done better ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The if / else condition cannot be used inside of a branch on Parent. And so the way you wrote your rule will stop as soon as it fails a condition. That can be inverted, with the branch inside of the conditions...
The rule structure I was suggesting is more like this, using create variable, math expressions, and list iteration:
If you want to shorten the rule a bit, you could use a single Create Lookup Table action in place of the create variable actions:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Julia
Welcome to the Atlassian community.
When asking for help with an Automation rule, it will help us help you if you provide screen images showing your entire Automation rule and the details of each step. It is also helpful if you explain what is not work or the part with which you need help. If the rule is running and not producing the expected results, include the output from the rule execution log, and tell us what results you expect vs. what you actually get.
In this scenario it sounds like you may also have multiple rules running to change the Epic status, so please provide screen images for all the rules that you are using to change the Epic status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have one of these each for To Do, Blocked & Test, but they move the Epic if ALL the children are the matching status (and they work fine). The one I am after is to move the Epic to In Progress if the children are multiple different statuses so it shouldn't clash with these three rules. (Moving to Done is required to be done manually as it is linked to another process)
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.