You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Trying to come up with the correct JQL query for all bugs that don't have "Triaged" as one of their labels, which should include bugs who have no labels at all.
I have tried:
type = Bug AND labels != "Triaged"
type = Bug and labels not in (Triaged)
Hi Mark,
type = BUG AND (labels != Triaged OR labels is Empty)
should do the trick
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That would return you all Bugs which have
1. any label but "Triaged" or
2. no label at all
Isn't that what you wanted?
If you had a label "Mark" (and not Triaged in the same ticket) it would return the ticket.
If you want to exclude multiple labels:
type = Bug AND (labels not in (Triaged, label2, label 3) OR labels is Empty)
Hope that explanation helps
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.