From 49b6a4a700efab70706d7437f27850f53d267261 Mon Sep 17 00:00:00 2001 From: Bekir Oguz Date: Mon, 7 Oct 2024 11:07:19 +0200 Subject: [PATCH] fix CI trigger on fork repo pull requests --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0eed6c1e..f9bd7bdca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,8 +16,7 @@ jobs: contents: write pull-requests: write runs-on: ubuntu-latest - # This condition ensures the ci job runs only for push events that are not associated with a pull request (prevents duplicate runs) - if: ${{ github.event_name == 'push' && github.event.pull_request == null }} + if: ${{ github.event_name == 'push' }} steps: - name: Checkout uses: actions/checkout@v4