From e858779e03254a15c8829db6a6dfae85ffaaece2 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Fri, 9 Jan 2026 14:32:51 +0800 Subject: [PATCH] fix: quote if condition to fix YAML parsing error The colon in 'DECISION: REJECT' was causing YAML parsing issues. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/claude-pr-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude-pr-review.yml b/.github/workflows/claude-pr-review.yml index 1a5c4068..33a876bd 100644 --- a/.github/workflows/claude-pr-review.yml +++ b/.github/workflows/claude-pr-review.yml @@ -49,7 +49,7 @@ jobs: DECISION: REJECT or DECISION: PASS - name: Close PR if rejected - if: contains(steps.claude-review.outputs.response, 'DECISION: REJECT') + if: "contains(steps.claude-review.outputs.response, 'DECISION: REJECT')" env: GH_TOKEN: ${{ github.token }} run: |