From b885097e24ccb1c365676cbd2cc31edfadb15908 Mon Sep 17 00:00:00 2001 From: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> Date: Mon, 5 Dec 2022 14:04:30 +0100 Subject: [PATCH] refactor(dependabot): skip deploy step aligned CI/CD scripts --- .github/workflows/default.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 722c1db1e..e4846ded7 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -37,5 +37,5 @@ jobs: deploy: uses: ./.github/workflows/02-deploy-gh-pages.yml - if: ${{ github.actor != 'dependabot[bot]' && github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ui' }} + if: ${{ github.actor != 'dependabot[bot]' && (github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ui') }} needs: [lint, build]