From f5bf5c236a6ddab595e8aa3dee9c0fe370053bf0 Mon Sep 17 00:00:00 2001 From: "Quentin McGaw (desktop)" Date: Thu, 14 Oct 2021 16:32:43 +0000 Subject: [PATCH] Hotfix: CI if condition --- .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 78bdc064..f19960f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: verify: # Only run if it's a push event or if it's a PR from this repository, and it is not dependabot. if: | - github.actor != 'dependabot[bot]' + github.actor != 'dependabot[bot]' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) runs-on: ubuntu-latest