I would like to filter out tickets in a release that would be closed by QA team and tickets status moved from "IN QA" to "Done".
Can anyone help me with the JQL.
project = ABC AND fixVersion = 10.0.1 AND status changed from "IN QA" TO "DONE" AND status changed BY currentuser()
Hi, @Syed Abdul Basit !
If all QA-members have jira group like "QA-team", you can use the JQL like that:
project = ABC AND fixVersion = 10.0.1 AND status changed from "IN QA" TO "DONE" AND status changed BY (membersof("qa-team"))
Also, would like to know the possible methods of using the BY command.
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.
Hi @Syed Abdul Basit !
In the context of the JQL operator "Changed" you can read the official documentation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The "
CHANGED
" operator is used to find issues that have a value that had changed for the specified field.This operator has the following optional predicates:
- AFTER "date"
- BEFORE "date"
- BY "username"
- DURING ("date1","date2")
- ON "date"
- FROM "oldvalue"
- TO "newvalue"
(Note: This operator can be used with the Assignee, Fix Version, Priority, Reporter, Resolution, and Status fields only.)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Alexander. In Jira, the username would be the profile name?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Syed,
What exactly is your question? What does not work with the query you have? What is the exact scenario?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Instead of using currentuser() function, I would like to filter by resource name
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.