From 325362d17d47f96900b2d631cb14f6bba9291d13 Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Tue, 30 Apr 2024 13:33:02 +0200 Subject: [PATCH] ci: Skip cloudflare-astro E2E tests for dependabot They fail because a secret is missing, we can skip them for dependabot. --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7609e25a856f..a7115aa7a15b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -989,6 +989,8 @@ jobs: strategy: fail-fast: false matrix: + is_dependabot: + - ${{ github.actor == 'dependabot[bot]' }} test-application: [ 'angular-17', @@ -1042,6 +1044,10 @@ jobs: - test-application: 'nextjs-app-dir' build-command: 'test:build-13' label: 'nextjs-app-dir (next@13)' + exclude: + - is_dependabot: true + test-application: 'cloudflare-astro' + steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) uses: actions/checkout@v4