I cannot understand why these simple rules are not working for the automation I'm trying to accomplish. I merely want to transition issues to Archive after they have been transitioned to Done for 3 days. This should be so easy and I know I'm going to kick myself after one of you tell me what is missing here... Ideas?
You are trying to do something 3 days after the transition to done, but your trigger is on the transition to done now. That happens at that moment in time.
To do what you ask, you could change to use a scheduled trigger (e.g., running once per day), and use JQL to identify any Done issues to move to Archived on that day.
Kind regards,
Bill
Thanks, Bill. That makes sense. I'll give it shot!
Donna
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, I am still not finding success. Here is what I've got.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you using Jira Cloud, Server, or Data Center version?
Would you please post an image of the audit log details, showing what happened when the rule executed? That may indicate what is happening.
And...some tips:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Bill,
I am using Jira Cloud. Audit Log:
New Automation using your suggested JQL statement move to Schedule (note that the query has validated 1 issue to match the condition):
Audit log after running this new rule:
Thank you for the tips.
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.
Those results show there are no issues found. If you try that JQL stand-alone with View All Issues, adding the project information, what do you see?
project = yourProjectName AND status = Done AND NOT status CHANGED AFTER -1d
If there are no results, then there are no issues yet ready to transition.
Also...please note the default for the trigger is to "Only include issues that have changed since the last time this rule executed". That may not be what you want, so consider disabling that option.
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.