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.
How do I setup a filter using scriptrunner that will show issues with the following conditions:
Also, need to notify the assignee on a different linked ticket that has linkedissue of "depends on" which is linked to the one that has "is depended on by" that the "is depended on by" issue has moved to done or cancelled.
for the first part of your question, you could use this JQL:
issuefunction in hasLinkType("is depended on by") AND (status was in (Development) and (status = 'Done' or status = 'Cancelled')) AND Sprint in openSprints()
For the second part, you have to do a script that use the previous JQL and in the script you must implement a loop that get assignee for every issue extract from the JQL and send a mail to it. For this, you could give a look to this page.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.