Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Do not run E2E tests for dependabot PRs #6235

Merged
merged 1 commit into from Nov 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Expand Up @@ -679,7 +679,10 @@ 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_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
if:
mydea marked this conversation as resolved.
Show resolved Hide resolved
(github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) &&
github.actor != 'dependabot[bot]'
needs: [job_get_metadata, job_build]
runs-on: ubuntu-latest
timeout-minutes: 10
Expand Down