Skip to content

Commit

Permalink
test(e2e): Don't run optional E2E tests on Dependabot PRs (#12818)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lms24 authored Jul 9, 2024
1 parent 07c1360 commit 6f590fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,8 @@ jobs:
# See: https://github.com/actions/runner/issues/2205
if:
always() && needs.job_e2e_prepare.result == 'success' &&
(github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
(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, job_e2e_prepare]
runs-on: ubuntu-20.04
timeout-minutes: 10
Expand Down

0 comments on commit 6f590fa

Please sign in to comment.