Our workflow has a status of "QA Final" from which an issue can transition to "QA Final Passed" and "QA Final Failed." Naturally, all issues don't go through the failed step. Nor do they end up there, because they get fixed, go back to "QA Final" and eventually pass.
The fact that the issue was once in the failed status is in the transition log.
I would like to get a list of the issues that were ever in the "QA Final Failed" status.
How can I do this?
Hey George,
You should be able to use the WAS operator to find those issues using JQL. Your query would be something long the lines of:
status WAS "QA Final Failed"
Yes! That works.
Now, is there a way to pull out the DATE it went into that status?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not sure whether it's possible through JQL, but using plugin you can get it on issue view screen and then through JQL -
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't know if there is a way to find out the date that the status changed in using JQL. You can restrict your query to find changes based on the date though.
AFTER "date"
BEFORE "date"
DURING ("date1","date2")
ON "date"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Jeff and Tarun. Jeff, your first "status WAS" answer was perfect. If I want to get dates, then I think Tarun's will work for that. I already have the plugin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would do this through SQL. If you have access to the SQL database you can write a qeury to show issues that have ever had a history of 'QA Final Failed' as a status.
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.