We are using JIRA plan to do release planning and we have used "Team" field to capture the tasks assigned to different teams. However, when we try to add gadgets in JIRA dashboard such as pie chart or two dimensional filter result, we do not see the "Team" field can be used there.
Is there a way we can add the "Team" field for those gadgets?
Hi @Dheeraj,
To clarify, you want to omit issues with the labels "Production" and "production", is that correct?
If that is the case, you could use the JQL
label not in ("production", "Production")Let me know if I have misunderstood your question.
Thanks
Sorry that I have confused you.
I need to track all the defects that have been closed without adding the label as Production. production(lower case p) is also not allowed.
so the condition I tried goes like this - (label !=Production OR label = EMPTY).
But the above condition doesn't give me a track of all the defects which are closed with label = production.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
(type = defect AND status = closed AND label = "production" OR type = defect AND status = closed AND label != "Production")
This assumes you are looking for all defects that are closed with one label spelling and not the other.
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.