From e3798db9b0ad401e0f9729c3940dcb519c3f9e4e Mon Sep 17 00:00:00 2001 From: Alex Gartner Date: Tue, 10 Dec 2024 09:04:29 -0800 Subject: [PATCH] ci: skip cache build for dependabot PRs --- .github/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 392b5e3bdf..40d3761345 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -32,7 +32,7 @@ jobs: # forked pull request will fall back to slow build build-zetanode: runs-on: ubuntu-22.04 - if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'zeta-chain/node' + if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'zeta-chain/node') && github.actor != 'dependabot[bot]' env: DOCKER_IMAGE: ghcr.io/${{ github.repository_owner }}/zetanode DOCKER_TAG: ${{ github.ref == 'refs/heads/develop' && 'develop' || github.sha }}