From da37cd4e6a50e9763cc7e84527119036fd1d5349 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Tue, 9 Jul 2024 09:25:58 +0200 Subject: [PATCH] test(e2e): Don't run optional E2E tests on Dependabot PRs --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d1fab748707b..fdaa607f0411 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1119,7 +1119,8 @@ jobs: # See: https://github.com/actions/runner/issues/2205 if: always() && needs.job_e2e_prepare.result == 'success' && - (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) + (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && + github.actor != 'dependabot[bot]' needs: [job_get_metadata, job_build, job_e2e_prepare] runs-on: ubuntu-20.04 timeout-minutes: 10