Hello,
I am trying to add automation to change the status of a ticket from "Resolved, waiting for Calls" (renamed the pending status) to "Done" after 24 hours, however, the automation is running but it is not being transitioned.
Any suggestions, or is there an easier way to transition it?
Thanks
You actually need to create a Scheduled rule to do this.
The 24 hours factor is like a condition that will never be reached according to your automation rule.
Try something like this:
After that, every day at the stipulated time, the issues that are within the filter will be transferred to Done
Hope this helps. Let me know if you have any question.
Regards,
Fernando
Hi Fernando,
Thanks for the suggestion, I followed it, however, it is still returning "No Actions Performed". Any suggestions?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No Actions performed indicates that you do not yet have any issues that fit your filter result.
This same filter you can use in a Jira JQL and see how many results it returns.
If it returns results and you still get the No Actions Performed message, can you share how you configured the rule here?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Fernando,
So I populated the service desk with a variety of issues and set them all to the same status, and used the previously suggested query, but still, nothing returned.
What ended up working was the following two queries:
status = "Resolved, Waiting for Calls" AND updated <= -1d AND updated > -2d
status = "Resolved, Waiting for Calls" AND updated <= startOfDay(-1) AND updated >= startOfDay(-2) AND updated <= now()
Now in principle, all 3 should have worked, as they're all calling the same values. It could be an issue with my instance referencing the date/time.
But thank you for the suggestions!
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.