Does anyone know of an automation rule that will transition stories/tasks/defect, back to the to-do status if it's moved out of a sprint?
You can try something like this:
Trigger: Field Value Changed
Condition: Jql to check if the issue vbelongs to the openSpring (Example: Project = JIRA and sprint not in openSprints())
Action: Transition Issue
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There are two steps to building a rule like this:
The first part is required to prevent updating issues which are modified in the backlog, and not in the current sprint. It may be done by either using the changelog fields to check the prior sprint values, or to initially "mark" (e.g., with a Label value) all issues in the sprint using another rule, triggered on Sprint Started...then check that "mark" before transitioning issues.
The second part may be checked with a JQL condition of sprint NOT IN openSprints().
Kind regards,
Bill
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.