From 539305f40ddfff74b73642af2ff20e6887f3e6a9 Mon Sep 17 00:00:00 2001 From: Bre77 Date: Sat, 11 Jul 2026 14:27:51 +1000 Subject: [PATCH] ci: skip no-mistakes-required check on fork The fork's delivery path (bin/fm-fork-deliver.sh) targets a local quality gate, not the no-mistakes pipeline, so this upstream-inherited check always fails red on fork PRs even when legitimately delivered. Guard the job on github.repository so it stays neutral here and re-activates automatically on the upstream repo, keeping the file merge-clean across future upstream integrations. --- .github/workflows/no-mistakes-required.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/no-mistakes-required.yml b/.github/workflows/no-mistakes-required.yml index ab1224d39..fc3b66880 100644 --- a/.github/workflows/no-mistakes-required.yml +++ b/.github/workflows/no-mistakes-required.yml @@ -18,6 +18,7 @@ jobs: name: PR must be raised via no-mistakes runs-on: ubuntu-latest if: >- + github.repository == 'kunchenguid/firstmate' && github.event.pull_request.user.login != 'github-actions[bot]' && github.event.pull_request.user.login != 'dependabot[bot]' steps: