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 e0fe46d commit f71ce3aCopy full SHA for f71ce3a
.github/workflows/build.yml
@@ -679,7 +679,9 @@ 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
+ if:
683
+ (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) &&
684
+ github.actor != 'dependabot[bot]'
685
needs: [job_get_metadata, job_build]
686
runs-on: ubuntu-latest
687
timeout-minutes: 10
0 commit comments