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.