Forums

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

What impact do Linked Issues have on Completing a Sprint?

Steve_G
Contributor
October 6, 2023

When using the Link Issue feature, do specific Link types prevent a Sprint from being completed if all linked issues are not Done?

Use Case:

Multiple development Stories are completed in the current Sprint and appear in the right-most column of the Scrum Board. These Stories are linked to a single QA Test Story that will be completed in a future Sprint. When Completing the current Sprint, will we encounter an error because of the incomplete linked Stories? Does the link type (i.e. blocked by, relates to, is tested by) affect whether the Sprint can be Completed?

2 answers

1 vote
Daniel Yelamos [Adaptavist]
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 Champions.
October 16, 2018

Hi Martin Hohenberg

As Gezim suggested: why don't you use the Scriptrunner built-in post-function "Fast-track transition"?

It's built in and it does what you want it to do.

Check the documentation for it here

Do tell me if I can help you further. 

Cheers!
DYelamos

0 votes
Gezim Shehu [Communardo]
Community Champion
October 16, 2018

I usually use the "old" method to transition, by calling the workflowTransitionUtil

 

WorkflowTransitionUtil workflowTransitionUtil = (WorkflowTransitionUtil) JiraUtils.loadComponent(WorkflowTransitionUtilImpl.class);

workflowTransitionUtil.setIssue(mutableParentIssue);
workflowTransitionUtil.setUserkey('userkey');
workflowTransitionUtil.setAction(actionID);
workflowTransitionUtil.validate();
workflowTransitionUtil.progress();

 

However, in your case, I would suggest to simply use the built-in post function

"Fast Track Transition Issue". Much more convenient and you just need to specify the condition and action ID.


Let me know

Suggest an answer

Log in or Sign up to answer