Skip to content

Commit e858779

Browse files
vintaclaude
andcommitted
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 <noreply@anthropic.com>
1 parent 464bb46 commit e858779

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/claude-pr-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
DECISION: REJECT or DECISION: PASS
5050
5151
- name: Close PR if rejected
52-
if: contains(steps.claude-review.outputs.response, 'DECISION: REJECT')
52+
if: "contains(steps.claude-review.outputs.response, 'DECISION: REJECT')"
5353
env:
5454
GH_TOKEN: ${{ github.token }}
5555
run: |

0 commit comments

Comments
 (0)