Hi there,
I am attempting to pull records that match:
I am continuing to get 0 records returned on tests though I specifically set up the attached ticket to match all criteria. Anyone see something I messed up here?
Screen cap included to demonstrate
It is because you are searching on labels. When you do that you either have to include issues that do not have a label like this:
duedate < -30d AND (labels != Post_Survey OR Labels is EMPTY) AND resolution was "done"
The other option is to negate the label like this:
duedate < -30d AND NOT (labels = Post_Survey) AND resolution was "done"
You are a complete rock star Mikael! Thank you so much - I never knew this field was handled different in JQL Automation scripts :) Found exactly one issue as it should. Amazing!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is not just in automations that you have to do this. Anytime you are doing a JQL that you want to exclude a label or component from you have to include when the label/component is empty.
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.