Skip to content

Commit 30c4491

Browse files
BenBtgCopilot
andcommitted
fix(bug-fix): set add-labels max to 1 consistently across source and lock
A prior autofix flipped the authored frontmatter add-labels.max back to 2, re-introducing the mismatch: source said 2, the compiled lock enforced 1, and Step 8 prose says 'exactly one status label per run'. The workflow only ever applies a single status label per run (needs-assessment | needs-reproduction | fix-proposed | fix-blocked), so 1 is the correct, tightest contract and matches the compiled lock. Set the frontmatter to max:1 so source, lock, and prose all agree (also avoids the lock staleness guard failing on a frontmatter mismatch). Assisted-by: GitHub Copilot (model: Claude Opus 4.8, autonomous) Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
1 parent 156fc1a commit 30c4491

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/bug-fix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ safe-outputs:
3737
max: 1
3838
add-labels:
3939
allowed: [needs-assessment, needs-reproduction, fix-proposed, fix-blocked]
40-
max: 2
40+
max: 1
4141
---
4242

4343
# Fix Bug from Labeled Issue

0 commit comments

Comments
 (0)