Hello,
I would like to set up a rule that would automatically change the status from "testing" to "in progress" after 5 days.
How could I manage to do that ?
thanks,
Hi Constance,
Without using an app, you would need to create a new SLA that starts when entering status testing and ends when moving to In Progress. ANd then use JSD Automation for when that SLA breaches to transition the issue.
Otherwise look at Automation for Jira or Scriptrunner - Escalation Services.
Hope that helps
Hello,
You would need a plugin for it.
For example, you could use the Power Scripts add-on:
You could create a job with a script like this:
string[] keys = selectIssues("project = prj and not changed from Testing after -5d and status = Testing");
for (string k in keys) {
autotransition("transition to in progress", k);
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Constance Tanguy The power scripts add-on is really a go to tool for all JIRA admins, and it provides SIL (Simple Issue Language), which is really easily to understand and write in order to automate a lot of tasks in JIRA.
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.