I am trying to add a color red on my kanban board for any blocked issues. However, there is not a "blocked" status defined, and likely will be challenging since there are many other teams that would need to be convinced. But, the tickets that have a blocking issue have the issue linked as "is blocked by", so I think I can use that.
However, I only want to include blocking issues that are still open. In other words, if a blocking issue gets resolved, then the issue that is blocked by it should not show red anymore.
So far I have the following query:
issueFunction in hasLinks("is blocked by")
What I need is to then filter the results of the blocking issues for status. Any ideas on how to do this?
Hi @[deleted] ,
welcome to the Atlassian Community!
Please try this query:
issueFunction in linkedIssuesOf("resolution = Unresolved", "blocks")
This should find all issues that are blocked by unresolved issues.
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_linkedissuesof
That seems to give me what I need. Thanks for the quick response!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm glad, that I have helped you.
Would you please mark my response as accepted so that other users can see it is correct when searching for similar answers? Thank you.
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.
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.