From b5466b24f9ce92474983098d9088645e956406ba Mon Sep 17 00:00:00 2001 From: NicolasMerget Date: Mon, 25 Jul 2022 12:10:27 +0200 Subject: [PATCH] fix: issue for deployment with dependabot --- .github/workflows/default.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index d0c0718a7..7e74a561a 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -37,8 +37,10 @@ jobs: deploy: uses: ./.github/workflows/03-deploy-gh-pages.yml + if: ${{ github.actor != 'dependabot[bot]' }} needs: [validate, test, cypress] publish: uses: ./.github/workflows/03-npm-publish.yml + if: ${{ github.actor != 'dependabot[bot]' }} needs: [validate, test, cypress]