Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hello,
You would need an add-on for it.
For example, you could use the Power Scripts add-on:
You could write a script like this:
string jql;
jql = "project = TEST";
string[] keys = selectIssues(jql);
for(string key in keys){
string [] h = fieldHistory(%key%, "assignee");
if (size(h) > 0) {
date changeDate = parseDate("dd.MM.yyyy", h[0]);
interval diff = currentDate() - changeDate;
if (diff >= "3d") {
%key%.assignee = "";
}
}
}
Then you can schedule this script with the runJobByCron method:
From historical experience unassigned issues don't get worked
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
well.. our tickets takes 20 minutes to do, if someone assigns a ticket and end his shift without anyone work on it until the next day when his shift starts.
We offer 24/7 service, our people do what is unassigned all the time.
So it's a different context.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register Now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.