mirror of
https://github.com/vinta/awesome-python.git
synced 2026-05-28 22:31:31 +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:
@@ -49,7 +49,7 @@ jobs:
|
|||||||
DECISION: REJECT or DECISION: PASS
|
DECISION: REJECT or DECISION: PASS
|
||||||
|
|
||||||
- name: Close PR if rejected
|
- name: Close PR if rejected
|
||||||
if: contains(steps.claude-review.outputs.response, 'DECISION: REJECT')
|
if: "contains(steps.claude-review.outputs.response, 'DECISION: REJECT')"
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user