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.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you try running it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
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.