Hey community,
I'm trying to set an SLA based on a JQL, yet when I try to remove a set of issues based on a specific "Label' , I can't properly use "Labels != XX " as that search won't bring back any issues.
Any known workarounds ?
Thank you
Anytime you use the labels field in a filter you also have to account for the case where the labels field does not have a value. So in your case your filter should look something like this:
(labels != XX OR labels is EMPTY)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I can suggest a few more options.
1) If we want to control SLA by 3 labels.
You can enter the following JQL request (with your labels and projects) in the advanced search field.
Project=QA and labels in(Department, Group1, Group2)
I’ll compare other options with the SLA Time and Report add-on developed by my SaaSJet team.
Example of a board with the same request but in a simpler format (no JQL).
2) If we want to see tasks WITHOUT these labels.
Project=QA and labels NOT IN(Department, Group1, Group2)
You can save JQL as a filter and use it in 2 ways.
Through JQL, you can do the same.
You can read more about JQL in /not in operators here, and also use the add-on yourself with a 30-day trial. I hope you found it helpful.
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.