Hello, I am trying to auto resolve the main issue when the linked (blocked by) issues are resolved. I came up with this automation below. It seems like nothing happens when I change the linked issues state to done. The main issue is still in submitted state. Any suggestions will be appreciated.
Hi Elif,
What do you mean it does not work? Is there an error? Can you share the audit log?
@John Funk , when I transition the linked issues to state: done ; the main issue's state does not change. Nothing happens.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, and to John' question...
In the audit log, please expand some of the details sections with "Show more" and post that image. That will indicate which steps in the rule processed, or not. Thanks!
My hypothesis: your JQL conditions on the Summary field are not matching as you expect.
Kind regards,
Bill
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.
Hi @Elif Alverson
It looks like your JQL may be filtering for only issues that contain both "September 1" and "August 1", rather than issues that contain either one of these.
If you try removing one of your JQL conditions, so it's only matching on one of the strings, does your rule successfully trigger against one of the test issues?
Cheers,
Charlie
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, I think Charlie identified the cause: your rule structure is performing an AND of the two conditions.
To still include both, switch to one condition with:
summary ~ "September 1" OR summary ~ "August 1"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Charlie Gavey and @Bill Sheboy , this solution works perfect for the test project I created. I will try it in an established project and let you know. Thank you so much for your quick response and help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Charlie Gavey and @Bill Sheboy for jumping in while I was out. :-)
Glad your test worked @Elif Alverson !!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, this solution works in an established project as well. Thank you so much for your help again.
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.