Is there a way to search for Transitions in JIRA? Need to figure out when a ticket got moved from open to in progress or from In progress to Testing or from testing to Closed.
Thanks for the inputs!
We can see another option as Transitions however, this field is not available for querying. Looking for an option where it can be searched for multiple issues/tickets with a query.
"Transition" is not a field, but "status" is! And you can use the WAS operator to test it!
See here: https://support.atlassian.com/jira-software-cloud/docs/jql-operators/#WAS
These are part of native Jira features.
We have built an app for this use case.
If you would be interested in the same, you can try out
You can view the complete change log for your filtered issues along with status changes as different columns.
Do Try it out.
Disclaimer : I am part of the team which developed this app
This article might be helpful for your case: 6 simple options to track status changes in Jira
For status transitions, I recommend the first option (described in the article). Try JQL with the CHANGED operator. For example:
status CHANGED FROM "To DO" TO "In Progress" AND status CHANGED FROM "In Progress" TO "On Hold" DURING (("2023/03/01","2023/04/01")
Or the third option with Issue History for Jira app (developed by my team), where you can filter by specific status transition and get all changes for it.
Hope you find the solution that works best for you.
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Get started with Jira Software
New to Jira Software? These short, self-paced courses will teach you what you need to know to get up and running quickly.
The Beginner's Guide to Agile in Jira
Learn what agile, kanban, and scrum are and how agile works in Jira Software.
Realizing the Power of Jira Reporting and Dashboards
Use out-of-the box reporting and dashboard capabilities to view and assess progress and bottlenecks within projects.