Need assistance on how to script a condition using script runner for when there is no linked issue of a specific issue type in a particular project.
Here is a sample of a script I wrote, it requires that there be no unresolved (outward) linked issues of type "dependency":
import com.atlassian.jira.ComponentManager; import com.atlassian.jira.issue.link.IssueLink; import com.atlassian.jira.issue.link.IssueLinkManager; import com.opensymphony.workflow.InvalidInputException; IssueLinkManager issueLinkManager = ComponentManager.getInstance().getIssueLinkManager(); Boolean hasUnresolvedLink = false; for (IssueLink link in issueLinkManager.getOutwardLinks(issue.id)) { if (link.getIssueLinkType().getName()=="dependency") { if(link.getDestinationObject().getResolutionDate() == null) { hasUnresolvedLink = true; } } } if(hasUnresolvedLink) { invalidInputException = new InvalidInputException("All \"depends on the primary\" linked issues must be resolved to perform this operation.") }
It sounds like you don't care what type of link, and so you don't need to check the linkType, and you'd want to change from getting the destination object's resolution date to IssueType, but those should be straightforward modifications.
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.