From 2d7bd7074286e300e0fa8aa5c49ef06dc06e4e7b Mon Sep 17 00:00:00 2001 From: Krystle Salazar Date: Sat, 4 Jun 2022 02:20:00 +0100 Subject: [PATCH] Add explicit exclusion for dependabot --- .github/workflows/ci_cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index bd7315075..5c03943d9 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -255,8 +255,8 @@ jobs: publish-docs: name: Publish developer docs runs-on: ubuntu-latest - # Check if the event is not triggered by a fork - if: github.event.pull_request.head.repo.full_name == github.repository + # Check if the event is not triggered by a fork or dependabot + if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != "dependabot[bot]" needs: - build-images