Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How can I move ticket status to "Integration Testing" after Sprint closing

Peter Reiser
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 5, 2018

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

 

2 answers

2 accepted

2 votes
Answer accepted
Jack Brickey
Community Champion
July 5, 2018

You can create a filter like Project = xxx and Sprint = yyy then perform a bulk update.

1 vote
Answer accepted
Christopher Jaksch
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 5, 2018

Hi @Peter Reiser

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

Suggest an answer

Log in or Sign up to answer