如何编写 JQL 查询来查找标签列表不包含特定值的所有问题?
我尝试过labels != "thing-i-dont-want"
,但是这没有用(奇怪的是,没有发现任何问题),并且labels not in "thing-i-dont-want"
,结果相同。
答案1
有一篇帖子这里建议使用以下内容:
status in("open","reopened","inprogress") and (labels not in("OnHold") or labels is EMPTY)
如何编写 JQL 查询来查找标签列表不包含特定值的所有问题?
我尝试过labels != "thing-i-dont-want"
,但是这没有用(奇怪的是,没有发现任何问题),并且labels not in "thing-i-dont-want"
,结果相同。
有一篇帖子这里建议使用以下内容:
status in("open","reopened","inprogress") and (labels not in("OnHold") or labels is EMPTY)