From dafd3762440e2bb48d52c46acb3745d2ec74c38a Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Fri, 28 Aug 2026 12:42:35 -0700 Subject: [PATCH] Keep full CI on pull requests [skip ci] --- .github/workflows/ci.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24b5610a..bd3971a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: pull_request: branches: [dev, main] push: - branches: [dev, main] + branches: [main] workflow_dispatch: permissions: @@ -19,43 +19,36 @@ concurrency: jobs: lint: - if: github.event_name != 'push' || github.event.head_commit.author.email != 'release-bot@archivebox.io' name: Linters uses: ./.github/workflows/lint.yml secrets: inherit install-cli-platform: - if: github.event_name != 'push' || github.event.head_commit.author.email != 'release-bot@archivebox.io' name: Install and CLI platform compatibility uses: ./.github/workflows/test.yml secrets: inherit tests: - if: github.event_name != 'push' || github.event.head_commit.author.email != 'release-bot@archivebox.io' name: Discovered test matrix uses: ./.github/workflows/test-parallel.yml secrets: inherit documentation: - if: github.event_name != 'push' || github.event.head_commit.author.email != 'release-bot@archivebox.io' name: Documentation and root tests uses: ./.github/workflows/docs.yml secrets: inherit codeql: - if: github.event_name != 'push' || github.event.head_commit.author.email != 'release-bot@archivebox.io' name: CodeQL uses: ./.github/workflows/codeql.yml secrets: inherit python-artifacts: - if: github.event_name != 'push' || github.event.head_commit.author.email != 'release-bot@archivebox.io' name: Tested Python artifacts uses: ./.github/workflows/pip.yml secrets: inherit docker-digests: - if: github.event_name != 'push' || github.event.head_commit.author.email != 'release-bot@archivebox.io' name: Tested Docker images uses: ./.github/workflows/docker.yml with: @@ -64,7 +57,7 @@ jobs: required: name: All required CI lanes - if: ${{ always() && (github.event_name != 'push' || github.event.head_commit.author.email != 'release-bot@archivebox.io') }} + if: ${{ always() }} needs: - lint - install-cli-platform