Is it possible with ScriptRunner to change the transition destination within a post-function based on a field value?
For example, let's say the transition is from Backlog -> Approved, but if there is a custom field "Target" set to "2020", can I have the post-function redirect the issue to a different status "Escalation" instead of going to "Approved".
I'm thinking it would be some variation of this code below used to transition sub-tasks, but before I get into the weeds on it, I wonder if it's possible to change the transition destination of the current issue like that using a post-function.
import com.atlassian.jira.component.ComponentAccessor
def issueService = ComponentAccessor.getIssueService()
def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def subTasks = issue.getSubTaskObjects()
subTasks.each {
if (it.statusObject.name == "Open") {
def issueInputParameters = issueService.newIssueInputParameters()
issueInputParameters.with {
setResolutionId("1") // resolution of "Fixed"
setComment("*Resolving* as a result of the *Resolve* action being applied to the parent.")
setSkipScreenCheck(true)
}
// validate and transition subtask
def validationResult = issueService.validateTransition(user, it.id, 5, issueInputParameters)
if (validationResult.isValid()) {
def issueResult = issueService.transition(user, validationResult)
if (! issueResult.isValid()) {
log.warn("Failed to transition subtask ${it.key}, errors: ${issueResult.errorCollection}")
}
} else {
log.warn("Could not transition subtask ${it.key}, errors: ${validationResult.errorCollection}")
}
}
}
Hi @Paul Stahlke ,
You can trigger a transition using a scriptrunner postfunction, but it will not override the current transition. Make sure you are executing the script after the "Set issue status to the linked status of the destination workflow step" postfunction.
Antoine
It is possible as the plugin Jira Miscellaneous Workflow Extensions provides a conditional issue tranistion post function. The transitions must exist in workflow.
go for it and share your answer
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.