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?
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
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
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.