mirror of
https://github.com/vinta/awesome-python.git
synced 2026-02-05 18:18:30 +08:00
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>
This commit is contained in:
2
.github/workflows/claude-pr-review.yml
vendored
2
.github/workflows/claude-pr-review.yml
vendored
@@ -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: |
|
||||
|
||||
Reference in New Issue
Block a user