From bf76132fd427c59cda6c9e6627230e479ca97559 Mon Sep 17 00:00:00 2001 From: "Quentin McGaw (desktop)" Date: Thu, 14 Oct 2021 16:29:22 +0000 Subject: [PATCH] Maint: fix dependabot CI trigger --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a4ba6ec..ca0fce5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,8 +29,11 @@ on: jobs: verify: - # Only run if it's a push event or if it's a PR from this repository - if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository + # 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.event_name == 'push' || + github.event.pull_request.head.repo.full_name == github.repository) runs-on: ubuntu-latest env: DOCKER_BUILDKIT: "1"