Skip to content

Commit 6f590fa

Browse files
authored
test(e2e): Don't run optional E2E tests on Dependabot PRs (#12818)
1 parent 07c1360 commit 6f590fa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,8 @@ jobs:
11191119
# See: https://github.com/actions/runner/issues/2205
11201120
if:
11211121
always() && needs.job_e2e_prepare.result == 'success' &&
1122-
(github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
1122+
(github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) &&
1123+
github.actor != 'dependabot[bot]'
11231124
needs: [job_get_metadata, job_build, job_e2e_prepare]
11241125
runs-on: ubuntu-20.04
11251126
timeout-minutes: 10

0 commit comments

Comments
 (0)