I have 3 teams of developers (3 projects) and 1 QA team. All teams have single workflow and same boards with columns:
Open | In Progress | Ready for Code Review | In Code Review | Ready for QA | In QA | Done
QA team have board:
Open | Ready for QA | In QA | Done
To help QA team collect all tasks with status "Ready for QA" from all teams on one QA board I wrote filter query for QA board:
project in (QA, Team1, Team2, Team3) AND status in ("Ready for QA", "In QA/Testing", Done) ORDER BY Rank ASC
And it works. But when QA team create their own issues (status OPEN) it doesn't displayed on their board and in backlog (only in "all issues" page). But if I include in filter query "open" status like that:
project in (QA, Team1, Team2, Team3) AND status in ("Open", "Ready for QA", "In QA/Testing", "Done") ORDER BY Rank ASC
so all tasks from all teams will collected in QA board in "open" column.
How can I correct filter query to show issues from all projects with statuses "ready for QA", "In QA", "Done" and from QA project with status "Open"?
It would be like this
(project in (Team1, Team2, Team3) AND status in ("Ready for QA", "In QA/Testing", "Done") ) OR (project = QA and status = Open) ORDER BY Rank ASC
Норм :)
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.