Howdy!
I have been trying to create automation for the following:
Hoping someone can help me out with this. It seems simple, but I have really been struggling.
Thanks in advance!
For a question like this, context is important for the community to help. Please post the following:
Kind regards,
Bill
Thanks, Bill!
Expected behavior: When the Dev Task (Sub-Task type) is transitioned to Done I would like another the UI Task (Another Sub-Task type in the same story) to automatically transition to Ready for UI.
My workflow allows for this transition in both cases, I just cannot get the automatic trigger to work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Seeing what you tried will help to rule out (no pun intended) potential problems and identify what prevented the rule from working.
The most basic rule to do this would be:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you again for helping me out! Using your advice this is what I get:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Lesly Cracchiolo
Bill has jumped in to help with posts I've been answering before, so I am going to return the favor.
Your first problem is that with the branch you are changing the focus of the rule from the subtask that triggered it to that subtask's parent. Then you have a condition to see if the issue now in focus (the parent) matches the JQL you specified, which it will never do.
parent={{triggerIssue.parent}}
... is check if the issue in focus (the subtask Parent) itself has a Parent that matches the subtask's parent. To match this, the subtask's Parent would have to be its own Parent.
Instead use a For Each: Related Work Items: JQL branch.
Use the same JQL that you put into the condition. That will cause the focus to change to any work items that are siblings of the subtask (same Parent) that are also of the correct type (UI Task) and in the correct status (anything except Ready for UI).
Remove the Condition from within your branch.
And then your rule should work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Trudy,
Thank you for your help! I'm having some trouble completely understanding what you said above. Can you put it into steps for me, please? =)
What do I do next?
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.
Please see my earlier post above ^^^
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was able to get it! Thank you both for your help!!!!
This is what ultimately worked:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Change the work items types and statuses to match your scenario. Use the JQL you have, not the one I've put into my example.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.