Hello,
You would need a plugin for it.
For example, you could use the Power Scripts add-on:
You could create a script like this:
string jql;
jql =
"project = PRJ AND create > -20d and status <> Closed')"
;
string[] issueKeys = selectIssues(jql);
for
(number i =
0
; i < size(issueKey)
; i = i +
1
){
autotransition(121, issueKeys[i]);
}
This script will find all issues, which were created 20days ago and still are not in the Closed status. Then it will try to transition these issues, using the 121 transition id. You should find the correct transition ids to transition required issues.
Then you can schedule this script with the runJobByCron method:
Hello,
You can use the automation feature of Service Desk, if it's a service desk project as you tagged.
Regards,
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.