From d60d4825fc4556be0e8de4dfda53c5cf0722b679 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Sat, 11 May 2024 10:39:25 -0400 Subject: [PATCH] ci: fix `block-autosquash-commits` --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 814d11ce..100af074 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: block-autosquash-commits: - if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name + if: github.event_name == 'pull_request' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4.0.0