Groovy Script for transitioning linked issues

Darapu Rajesh Babu June 8, 2016

com.onresolve.jira.groovy.groovyrunner

Hi All,

I am able to pick the issue and also the linked issue. Now I want to transition the linked issue based on the main issue.

I am written the below code to fetch the issue and the linked issue. Please assist me further to transition linked issue. My requirement is like project A has an issue and Project B has an issue. Project B's issue is cloned to Project A;s issue. So when the project A's issue moves to other state then automatically the B's issue status should also change.

class LinkedIssue extends AbstractIssueEventListener {
Logger log = Logger.getLogger(LinkedIssue.class)

@Override
void workflowEvent (IssueEvent event)
{
log.setLevel(org.apache.log4j.Level.DEBUG)
def itsdIssue
Issue issue = event.getIssue()
def issuestatus = issue.getStatusObject().getName().toUpperCase()
def issueType = issue.issueTypeObject.name
log.debug ("issue :" +issue);
log.debug ("issue ID :" +issue.id)
log.debug ("issue status:" +issuestatus);
log.debug ("issue Type: " +issueType);



def componentManager = ComponentManager.getInstance()
def issueLinkManager = componentManager.getIssueLinkManager()

def issueLink = issueLinkManager.getOutwardLinks(issue.id)
log.debug ("Linktype: " + issueLink.issueLinkType.name)

def linkedIssueObj = issueLink.destinationObject;
log.debug ("Issue Key: " + linkedIssueObj.key)
}
}

1 answer

0 votes
Boris Georgiev _Appfire_
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.
June 8, 2016

Here's a similar question which contains example script for transitioning linked issues

https://answers.atlassian.com/questions/183942/groovy-script-for-linked-issue-transition

Hope it helps smile

Suggest an answer

Log in or Sign up to answer