Hi Jira Community
We have following use case:
Our software project has following workflow:
Backlog - ToDo - in Progress - in Review - Done - Integration Testing - Deployment - Close
The Sprint for the development team goes from
ToDo - Done
When the development team is done we want to close the Sprint and move all tickets with Status Done to Status Integration Testing and assign the ticket to the integration Testing team
How can this be done ?
Any advice is highly appreciated
Best regards
Peter
You can create a filter like Project = xxx and Sprint = yyy then perform a bulk update.
you should consider writing an automatic rule (e.g. via Power Scripts SIL script) to autotransition all done issues in a closed sprint. I'd suggest using a scheduler for this automation.
The script might look something like this:
string[] closedIssues = selectIssues("<JQL QUERY>"
);
for (string closedIssue in closedIssues) {
autotransition("Integration Testing", closedIssue);
}
Best wishes
Chris
STAGIL
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.