You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I'm trying to use ScriptRunner to identify all non-Done issues with links to non-Done issues in external projects. So far, I have this.
issueFunction in hasLinks() AND statusCategory != Done
I can't find how to limit results only to links going to other projects and only to non-Done issues.
Bonus Points:
When showing the results on a Jira dashboard or Confluence, how would I show the project of the external issue?
You could do something like this where PROJECT_NAME is the project name of the project you dont want.
issueFunction IN linkedIssuesOf("statusCategory != Done AND project != PROJECT_NAME") AND statusCategory != Done
Thanks. This is essentially where I landed:
project = "myProject" and issueFunction IN linkedIssuesOf("statusCategory != Done AND project != myProject") AND statusCategory != Done
This will show me everything in myProject with links outside of myProject.
Jira has a Links column which shows the key but that's not very helpful without the linked project and linked summary.
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.