we have an automation rule that must meet 2 requirements for it to work:
- Status not in Gesloten
- Updated <= -1w
I am wondering why the queue is showing tickets with the status "gesloten". I use AND in the query (and not OR) and even though I specifically put in the query Status != Gesloten.
Any one ideas on how to fix this rule?
You need to put the two priority conditions within brackets to make it
... and (priority = p2 or priority = p1))
The 'OR' here in your JQL is effectively ignoring some of the conditions before it.
Hope this helps!
Hi Callum,
The brackets did solve it. Thanks a lot!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Melle,
You can fix the JQL by using this:
project = KEOIT AND status != Gesloten AND updated <= 1w AND priority IN (P1, P2)
I hope 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.
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.