Hello,
Can someone tell me if there's a JQL query that can be built as a condition to enable "Escalate" status ONLY those issues that are "CreatedDate" + 7days old and status is still "OPEN"?
Hi Navin,
This JQL returns all issues created more than 7 days ago and which are on the Open status:
created < -7d AND status = Open
For simplicity, the status condition could be avoided by using a normal transition from Open to Escalate statuses, instead of a global transition.
There are apps which provide you with conditions based on JQL queries, like Jira Workflow Toolbox (Server), and other apps which enable alternative ways to achieve the same goal, like JMWE using expressions, or ScriptRunner's scripted conditions, among other.
Hope it helps.
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.