The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
Hello everyone, Hope everyone is safe! A few months ago we posted an article sharing all the new articles and documentation that we, the AMER Jira Service Management team created. As mentioned ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.