From ab9371774c807bd7b94c8081d1307f6ab08ec892 Mon Sep 17 00:00:00 2001 From: Luca Forstner Date: Wed, 2 Nov 2022 09:25:10 +0000 Subject: [PATCH] ci(e2e): Run E2E tests on non-PR triggers --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3df15e3eb112..7448523e084a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -620,7 +620,7 @@ jobs: job_e2e_tests: name: E2E Tests # We only run E2E tests for non-fork PRs because the E2E tests require secrets to work and they can't be accessed from forks - if: github.event.pull_request.head.repo.full_name == github.repository + if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository needs: [job_get_metadata, job_build] runs-on: ubuntu-latest timeout-minutes: 10