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.
In the process of testing, we check the New Feature and bind bugs to it by linking blocks: Bug blocks New Feature.
When the testing is done, we move the feature to Pending status and wait until all the bugs are fixed.
I want to set up a filter on the board so that I can find all the New Feature tasks in Pending that have passed the block, i.e. all the bugs linked in To Test, Testing, Ready To Deploy statuses.
Translated with www.DeepL.com/Translator (free version)
Hello @Victoria Kramarenko
Your requirement cannot be met with native Jira functionality.
Would you consider adding a third party application to your Jira system?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not an application vendor, but from my own experience I would recommend the Enhanced Search app from Adaptavist. It is a subset of their full ScriptRunner app.
With the Enhanced Search app you can create a filter that will search for issues that have linked issues, and base the results on a filter that applies to the linked issues. This makes use of the linkedIssuesOf function.
This is an example of the filter that would work in your case:
issuetype="New Feature" and status="Pending" and
issueFunction in linkedIssuesOf("issuetype=Bug and status in (To Test, Testing, Ready To Deploy)", "blocks")
The first part constrains the results to just New Features in the Pending status.
The second part constrains the results further by looking for only the New Features that have an "is blocked by" link where the linking issues is a Bug that is in one of the specified statuses.
You would save that filter through the Enhanced Search screen. In your board you would create a Quick Filter to reference that saved filter.
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.