Fix yaml syntax in pull-request-commit.yml (#11037)
This commit is contained in:
@@ -168,11 +168,13 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
PR_NUMBER: ${{ github.event.pull_request.number }}
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
||||||
run: gh pr edit "$PR_NUMBER" --add-label "bot: fingerprint changed" || true
|
run: |
|
||||||
|
gh pr edit "$PR_NUMBER" --add-label "bot: fingerprint changed" || true
|
||||||
|
|
||||||
- name: 🏷️ Remove fingerprint changed label
|
- name: 🏷️ Remove fingerprint changed label
|
||||||
if: ${{ !steps.fingerprint.outputs.includes-changes }}
|
if: ${{ !steps.fingerprint.outputs.includes-changes }}
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
PR_NUMBER: ${{ github.event.pull_request.number }}
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
||||||
run: gh pr edit "$PR_NUMBER" --remove-label "bot: fingerprint changed" || true
|
run: |
|
||||||
|
gh pr edit "$PR_NUMBER" --remove-label "bot: fingerprint changed" || true
|
||||||
|
|||||||
Reference in New Issue
Block a user