Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How to auto close parent issue when all linked issues are closed using script runner

Harish Kumar December 19, 2019

How to auto close an parent issue when all its subtasks are closed in the same project. 

I am trying this by using script runner for JIRA.

Can you guys help me out from here .

Thanks

Harish Kumar

1 answer

Suggest an answer

Log in or Sign up to answer
2 votes
Leo
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 20, 2019

Hi @Harish Kumar,

There is built-in post-function available in scriptrunner called "Transition parent when all subtasks are resolved"

and below script also can do the same for you

 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.user.ApplicationUser
import com.atlassian.jira.issue.IssueInputParametersImpl
import com.atlassian.jira.bc.issue.search.SearchService
import com.atlassian.jira.bc.issue.IssueService

def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def issueManager = ComponentAccessor.issueManager
IssueService issueService = ComponentAccessor.getIssueService()
def linkManager = ComponentAccessor.getIssueLinkManager()
def searchService = ComponentAccessor.getComponent(SearchService.class)
def actionId = 41 //41 is my final state transition ID


def transitionValidationResult
def transitionResult

if(issue.getIssueType().name == "Sub-task"){
def allDone = true
ApplicationUser user = issue.getAssignee()
def parent = issue.getParentObject()
parent.getSubTaskObjects()?.each { subtask ->
if(subtask.getStatus().name == "Unresolved" && subtask != issue)
{
allDone = false
}
}
if(allDone){
transitionValidationResult = issueService.validateTransition(currentUser, parent.id, actionId,new IssueInputParametersImpl())
if (transitionValidationResult.isValid()) {
transitionResult = issueService.transition(currentUser, transitionValidationResult)
if (transitionResult.isValid())
{ log.warn("Transitioned issue $issue through action $actionId") }
else
{ log.warn("Transition result is not valid") }
}else{
log.warn("The transitionValidation is not valid")
}

}
}


 BR,

Leo

Kamal Iqlaas Ismail February 16, 2023

hey @Leo , where should we paste the script you gave above?

TAGS
AUG Leaders

Atlassian Community Events