From 82563e31c2d3b80ea2193b2da235802aa9d38c4d Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Fri, 13 Mar 2026 10:22:07 +0000 Subject: [PATCH] More review feedback Signed-off-by: Bryan Boreham --- AGENTS.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 736df5f632..268eff10e5 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -30,11 +30,10 @@ convention. ## Commits -- Each commit must compile and pass tests independently. +- Each commit must compile and pass tests independently, except when one commit adds a test to expose a bug and then the next commit fixes the bug. - Keep commits small and focused. Do not bundle unrelated changes in one commit. - Sign off every commit with `git commit -s` to satisfy the DCO requirement. -- Do not include unrelated local changes in the PR (reviewers will ask you to - remove them — see PR #18223). +- Do not include unrelated local changes in the PR. ---