英文:
How to prevent new Backlog items in Azure DevOps to automatically appear on Kanban board
问题
我是新手,正在尝试在Azure DevOps中创建任务和问题,首先要将它们添加到待办事项列表中,而不会立刻出现在看板上。只有当任务准备好时,它们才应该出现在看板上。然而,每次我创建新任务或问题时,它们都会自动出现在看板上。我该如何阻止任务自动出现在看板上?
英文:
I am new to Azure DevOps and I am trying to create tasks and issues in the backlog first without appearing on the kanban board, and when tasks are ready they should appear on the kanban board. However every new task or issue I create they all appear on the kanban board. How can I prevent the tasks from automatically appearing on the Kanban board?
答案1
得分: 0
你不能这样做,因为看板板等于你的待办事项列表。你可以考虑:
- 使用标签来标记已准备好的工作项。
- 为问题添加自定义状态,然后在看板上使用它:https://learn.microsoft.com/en-us/azure/devops/organizations/settings/work/manage-process?view=azure-devops
- 使用另一个包含所有所需状态的更复杂的流程。例如,Scrum:
此外,你可以隐藏“新建”列:
英文:
You can not do that because the Kanban board is equal to your Backlog. You may consider:
- Using tags to mark ready work items.
- Add your custom state for issues then use it on the board: https://learn.microsoft.com/en-us/azure/devops/organizations/settings/work/manage-process?view=azure-devops
- Use another more complex process that contains all the needed states. As an example, Scrum:
Additionally, you can hide the New column:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论