We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f98523b commit 3423a0aCopy full SHA for 3423a0a
1 file changed
.github/workflows/checks.yml
@@ -73,6 +73,11 @@ jobs:
73
- run: yarn test:integration
74
75
test-e2e:
76
+ # 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
77
+ # Dependabot PRs sadly also don't have access to secrets, so we skip them as well
78
+ if:
79
+ (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) &&
80
+ github.actor != 'dependabot[bot]'
81
needs: build
82
name: E2E Tests
83
runs-on: ubuntu-latest
0 commit comments