英文:
How can I update my Kanban board's filter to ignore closed XRAY Test issues?
问题
我有一个看板,即使它们已关闭,我在“打开问题导航器”中看到了所有的XRAY测试问题。打开的问题使用一个筛选器来选择未解决的解决方案的问题,而所有的XRAY问题都有一个未解决的解决方案,因为工作流程不需要为XRAY问题选择解决方案。有人可以帮助我如何更新看板的“打开问题筛选器”,以忽略已关闭的问题,或者如何更新XRAY问题的解决方案?
我创建了一个筛选器,并尝试在看板上使用它,但看板不允许我更新打开的问题筛选器。
英文:
I have a Kanban board and I see all XRAY Test issues in Open issues navigator even though they are closed. The Open issues are using a filter to pick issues where Resolution is unresolved and all XRAY issues has Resolution as UnResolved as the workflow doesn't mandate picking up a resolution for the XRAY Issues. Can anyone help how to update Kanban board - Open issues filter to ignore Closed issues or how to update resolution for XRAY Issues?
Created a filter and tried to use it on Kanban board but the board doesn't let me update the open issues filter
答案1
得分: 0
转到“面板” ->“面板设置” ->“编辑筛选查询” -> project = XXX AND issuetype not in (Precondition,Test,"Test Execution","Test Plan","Test Set","Sub Test Execution")
或只需将 AND issuetype not in (Precondition,Test,"Test Execution","Test Plan","Test Set","Sub Test Execution")
添加到您现有的筛选器。
英文:
Go to Boards -> Boards Settings -> Edit filter query -> project = XXX AND issuetype not in (Precondition,Test,"Test Execution","Test Plan","Test Set","Sub Test Execution")
or just add the AND issuetype not in (Precondition,Test,"Test Execution","Test Plan","Test Set","Sub Test Execution")
to your existing filter.
答案2
得分: 0
为了使Jira将问题视为已关闭,需要在RESOLUTION字段中填写内容。问题的状态不重要,即使是CLOSED或DONE。
您可以使用批量更新来处理所有已关闭的XRAY测试问题,并为它们赋予一个解决方案值。我还建议修改工作流以设置解决方案值,当XRAY测试问题转换为CLOSED时。
英文:
For Jira to think of an issue as being closed it needs to have something in the RESOLUTION field. The status of the issue doesn't matter, even if it is CLOSED or DONE.
You could use <a href="https://confluence.atlassian.com/jirasoftwareserver/editing-multiple-issues-at-the-same-time-939938937.html">batch update</a> on all closed XRAY Test issues and give them a resolution value. I would also suggest <a href="https://confluence.atlassian.com/jirakb/jira-issues-need-a-resolution-826873869.html">modifying the workflow to set a resolution value</a> when an XRAY Test issue is transitioned to CLOSED.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论