Can we write a JQL for when a ticket in the release has no status update for 5 days.
Hey @HaRsHaS_ V
Depends on what you refer to as "status update".
A query like
fixVersion = x.x.x and updated <= -5d
returns issues from a specific that have not been updated throughout the last 5 days (no field or status change, comment, etc.).
If you're referring to actual status changes, a query like
fixVersion = x.x.x AND NOT status CHANGED AFTER -5d
Might do the trick.
Regards,
Thorsten
Hi @HaRsHaS_ V!
I propose that you try such a JQL query:
fixVersion = latestReleasedVersion() AND status NOT IN (Done) and updated <= -5d
Using this JQL, you can retrieve a list of tickets in the latest released version that are not marked as Done and haven't had any updates (including any change to status, comment, or other fields) for at least 5 days.
Here is also the article that may be helpful in similar cases: JQL Queries for Analyzing Team Performance in Jira
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.