From 6ede32b2d49e6c6b3979a5626e64f4be92950f6f Mon Sep 17 00:00:00 2001 From: Louis King Date: Wed, 17 Jun 2026 21:54:20 +0100 Subject: [PATCH] fix: ensure CI required checks run on all PRs Remove paths-ignore from the pull_request trigger so the CI workflow always runs and the required Lint/Test/Build Package checks report on docs-only PRs (previously skipped entirely, blocking merges). Drop the github.event_name == 'push' gate on the build job so the required Build Package check also reports on pull requests. --- .github/workflows/ci.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8672fa..71a086e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,12 +11,6 @@ on: - "FUNDING.yml" pull_request: branches: [main] - paths-ignore: - - "**/*.md" - - "docs/**" - - ".env.example" - - "LICENSE" - - "FUNDING.yml" permissions: contents: read @@ -85,7 +79,6 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 needs: [lint, test] - if: github.event_name == 'push' steps: - uses: actions/checkout@v6