Hi Folks, Experts,
I stugged with requiment...
I need to create issue via workflow post-function (groovy create and link).
That schould work only if current issue haves linked to the issuekey: CPWEB-2056
How can i make it?
Read the links from the current issue with
issueLinkManager.getOutwardLinks(issue.getId())
That will return a list, which you can iterate through looking for
it.getKey().equals("CPWEB-2056")
Hi Nic, thanks for provided respond,
Currently still can't reach goal with this script:
if (issueLinkManager.getOutwardLinks(issue.id)*.getKey().equals("CPWEB-2056")) {
true
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nic, thanks for provided respond,
Currently still can't reach goal with this script:
if (issueLinkManager.getOutwardLinks(issue.id)*.getKey().equals("CPWEB-2056")) {
true
}
What next? Hope you assist,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
import com.atlassian.jira.component.ComponentAccessor
def linkManager = ComponentAccessor.issueLinkManager
linkManager.getOutwardLinks(issue.getId()).each{
def linkedIssue = it.destinationObject
if (linkedIssue.key == "CPWEB-1823") {
}
}
true
doesnt works(
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.