From 5a16c3a1029abae9dd1de3ec9f1a3192b8678503 Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Mon, 5 Jan 2026 07:27:12 -0800 Subject: [PATCH] fix(code-review): halt on git command failure instead of silently treating as NO_GIT --- .../4-implementation/code-review/steps/step-01-load-story.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/bmm/workflows/4-implementation/code-review/steps/step-01-load-story.md b/src/modules/bmm/workflows/4-implementation/code-review/steps/step-01-load-story.md index 0cecec8e..0ad72346 100644 --- a/src/modules/bmm/workflows/4-implementation/code-review/steps/step-01-load-story.md +++ b/src/modules/bmm/workflows/4-implementation/code-review/steps/step-01-load-story.md @@ -74,7 +74,7 @@ git diff -M --name-only git diff -M --cached --name-only ``` -If any git command fails: Report the error to user and set `git_changed_files` = NO_GIT. +If any git command fails: Report the error to the user and HALT the workflow. Compile `git_changed_files` = union of modified, staged, new, deleted, and renamed files.