Have Withdrawn status -> All in workflow that I would like to set to resolved only if Time Spent on issue is greater than zero. How can I accomplish this?
Hello @Ray Miller ,
You can achieve this from the advanced search, filtering the issues based on the following JQL query :
status = Withdrawn AND timespent > 0
Then, from the search menu you can perform a bulk change to transition issues to the desired status. However, a transition from "Withdrawn" to "Resolved" status must exist in your Workflow in order to be able to perform this action, so make sure to add this transition in your current Workflow if it doesn't already exist.
Let me know if it solves your problem,
Guilhem
Much appreciated Guilhem.
I would like to accomplish such through a workflow post function or automation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ray Miller ,
You can definitely use this query in an Automation rule;
You could schedule it (using "scheduled" trigger) to run once a day and, for all issues matching the JQL query, transition them to "Withdrawn" status.
If you want this transition to be unavailable to users, you could add a Workflow condition on it, allowing only users in the project role "atlassian-addons-project-access" to perform it (aka only jira automation in your case).
If it answered your question, please click on "Accept Answer" in order to help other users of the community to better find what they look for in the future :)
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.