We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fccca98 commit 5be5a04Copy full SHA for 5be5a04
.github/workflows/build.yml
@@ -679,7 +679,10 @@ jobs:
679
job_e2e_tests:
680
name: E2E Tests
681
# 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
682
- if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
+ # Dependabot PRs sadly also don't have access to secrets, so we skip them as well
683
+ if:
684
+ (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) &&
685
+ github.actor != 'dependabot[bot]'
686
needs: [job_get_metadata, job_build]
687
runs-on: ubuntu-latest
688
timeout-minutes: 10
0 commit comments