From 5e7343b0d278c8424743ef5d01bf6fbd16b14d17 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Tue, 30 Jun 2026 14:15:28 -0700 Subject: [PATCH] Fix yaml syntax in pull-request-commit.yml (#11037) --- .github/workflows/pull-request-commit.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request-commit.yml b/.github/workflows/pull-request-commit.yml index cb30fc3924..7506c07c15 100644 --- a/.github/workflows/pull-request-commit.yml +++ b/.github/workflows/pull-request-commit.yml @@ -168,11 +168,13 @@ jobs: env: GH_TOKEN: ${{ github.token }} 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 if: ${{ !steps.fingerprint.outputs.includes-changes }} env: GH_TOKEN: ${{ github.token }} 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