From 4216f028d46f04a44aa60f307193ab5f15ee702b Mon Sep 17 00:00:00 2001 From: Mark Ridgwell <273118822+dnyw4l3n13@users.noreply.github.com> Date: Fri, 11 Sep 2026 15:13:49 +0000 Subject: [PATCH] fix(pr-lint): remove unreachable trufflehog scan-results step The trufflesecurity/trufflehog step has no continue-on-error, so a failure already stops the does-not-contain-secrets job immediately. The subsequent Scan Results Status step (if: outcome == 'failure') can never run and is dead code. Closes #871 --- .github/workflows/pr-lint.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml index 549223f2..7320299e 100644 --- a/.github/workflows/pr-lint.yml +++ b/.github/workflows/pr-lint.yml @@ -241,10 +241,6 @@ jobs: head: HEAD extra_args: --debug --only-verified - - name: "Scan Results Status" - if: steps.trufflehog.outcome == 'failure' - run: exit 1 - # @@required: merge has-no-merge-conflicts: if: github.event.pull_request.draft == false