From f5f61cbf0befae19e90ac7e62a5a63eb83ee921d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 14:37:04 +0000 Subject: [PATCH 1/2] fix(pr-review): preserve optional review body arg Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- claude-workflows/pr-review/scripts/pr-review.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/claude-workflows/pr-review/scripts/pr-review.sh b/claude-workflows/pr-review/scripts/pr-review.sh index 66c70ca1..f8453318 100755 --- a/claude-workflows/pr-review/scripts/pr-review.sh +++ b/claude-workflows/pr-review/scripts/pr-review.sh @@ -52,7 +52,7 @@ fi # Arguments EVENT="$1" -shift 2>/dev/null || true +shift 1>/dev/null || true # Read body from remaining arguments # Join all remaining arguments with spaces, preserving the string as-is From 62c0bf8b054ff3aa0f80e78c8b31df19e4f7cf3c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 14:37:05 +0000 Subject: [PATCH 2/2] fix(pr-review): retain stderr redirect in arg shift Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- claude-workflows/pr-review/scripts/pr-review.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/claude-workflows/pr-review/scripts/pr-review.sh b/claude-workflows/pr-review/scripts/pr-review.sh index f8453318..d5a97b35 100755 --- a/claude-workflows/pr-review/scripts/pr-review.sh +++ b/claude-workflows/pr-review/scripts/pr-review.sh @@ -52,7 +52,7 @@ fi # Arguments EVENT="$1" -shift 1>/dev/null || true +shift 1 2>/dev/null || true # Read body from remaining arguments # Join all remaining arguments with spaces, preserving the string as-is