Skip to content

Commit

Permalink
ci(e2e): Run E2E tests on non-PR triggers (#6110)
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst committed Nov 2, 2022
1 parent cfa196b commit c67afc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -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
Expand Down

0 comments on commit c67afc7

Please sign in to comment.