From 291147591b4f6b5da7548f8ca7775ae6f3264f64 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 5 Jun 2026 14:59:26 +0300 Subject: [PATCH] don't fail job if changed label is missing Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/pull-request-commit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-commit.yml b/.github/workflows/pull-request-commit.yml index 645383c38c..07a5a64bfb 100644 --- a/.github/workflows/pull-request-commit.yml +++ b/.github/workflows/pull-request-commit.yml @@ -162,7 +162,7 @@ jobs: env: GH_TOKEN: ${{ github.token }} PR_NUMBER: ${{ github.event.pull_request.number }} - run: gh pr edit "$PR_NUMBER" --add-label "bot: fingerprint changed" + run: gh pr edit "$PR_NUMBER" --add-label "bot: fingerprint changed" || true - name: 🏷️ Remove fingerprint changed label if: ${{ !steps.fingerprint.outputs.includes-changes }}