A team uses Azure Boards and wants to ensure that work items moved to the 'Done' state require a completed code review. What should they configure?
Trap 1: Modify the work item type definition to add a custom field for code…
Adding a field does not enforce the transition condition.
Trap 2: Use a tag to mark work items as code-reviewed before moving to…
Tags are not enforceable rules.
Trap 3: Configure branch policies in Azure Repos to require pull request…
Branch policies apply to code, not work item states.
- A
Add a work item rule in the process template to require a code review for the 'Done' transition.
Work item rules enforce conditions on state transitions.
- B
Modify the work item type definition to add a custom field for code review status.
Why wrong: Adding a field does not enforce the transition condition.
- C
Use a tag to mark work items as code-reviewed before moving to 'Done'.
Why wrong: Tags are not enforceable rules.
- D
Configure branch policies in Azure Repos to require pull request approvals.
Why wrong: Branch policies apply to code, not work item states.