Forums

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

Custom Script

Mani Reddy May 29, 2018

I am trying to write a scripted condition, Which will allow users to close an Epic only when  "Issues in Epic" are closed, NOT linked issues.

Below is the Script I am using,

 

import com.atlassian.jira.issue.link.IssueLink
import com.atlassian.jira.issue.link.IssueLinkManager
import com.atlassian.jira.component.ComponentAccessor

def sLinkTypeName = "Epic-Story Link";
def iLinkTypeName = "Epic-Bugs Link";
def links = ComponentAccessor.getIssueLinkManager().getOutwardLinks(issue.getId());
def issuesInEpic = []


for ( link in links)
{
def name = link.getIssueLinkType().getName();
def destinationObject = link.getDestinationObject();

if (sLinkTypeName.equals(name) || iLinkTypeName.equals(name))
{
issuesInEpic.add(destinationObject);
}

}
return issuesInEpic;

for (eachIssue in issuesInEpic)
{
issue.getStatus().getName() != "Done"

break
return false
}

return true

 

 

Any help would be appreciated. 

2 answers

1 vote
Eric Lemay
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.
May 29, 2018

I assume that the second link type you put in your script is a custom link type that you're using and that you created?  Note that since you're only getting outward links you'll need to be sure that the links you make from that epic are made in the right direction.

Your script is failing for a few reasons.  the first is because you're returning the issuesInEpic list, which effectively is ending your script.  

In your for loop, you name the issue as eachIssue and then referred to it as issue, this needs to remain consistent.  You also break the loop before returning your false value, which ends the script early with a null return.  Keep in mind that ending the script with no failure or without a proper return value will always evaluate to true.

import com.atlassian.jira.issue.link.IssueLink
import com.atlassian.jira.issue.link.IssueLinkManager
import com.atlassian.jira.component.ComponentAccessor

def sLinkTypeName = "Epic-Story Link";
def iLinkTypeName = "Epic-Bugs Link";
def links = ComponentAccessor.getIssueLinkManager().getOutwardLinks(issue.getId());
def issuesInEpic = []


for ( link in links)
{
def name = link.getIssueLinkType().getName();
def destinationObject = link.getDestinationObject();
if (sLinkTypeName.equals(name) || iLinkTypeName.equals(name))
{
issuesInEpic.add(destinationObject);
}

}
for (eachIssue in issuesInEpic)
{
if (eachIssue.getStatus().getName() != "Done"){
return false
}
}

return true
Mani Reddy May 29, 2018
Eric Lemay
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.
May 29, 2018

Did you try running it?

Mani Reddy May 29, 2018

Yes, I did saved the script and tried to close the Epic, it did allow me to close.

Edit : I couldn't find any error under post function and it is showing as successfully executed.

 

Script No error.PNG

0 votes
Eric Lemay
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.
May 29, 2018

I imagine that it should not be possible to close it?  that the situation you're describing is not the desired result?  It should be working.  Is the final status for the linked issues called "Done"? (with the exact capitalization)

 

Otherwise you should inject logs in the script and check the different items along the way to make sure that the data is accurate, that your links are properly indicated, etc.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events