Skip to content

Commit 47e1266

Browse files
authored
Skip code coverage on dependabot PRs
1 parent 6296993 commit 47e1266

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
coverage:
2121
# Will not run if the event is a PR to bump-meilisearch-v* (so a pre-release PR)
2222
# Will still run for each push to bump-meilisearch-v*
23-
if: github.event_name != 'pull_request' || !startsWith(github.base_ref, 'bump-meilisearch-v')
23+
# Will not run if the actor is Dependabot (dependabot PRs)
24+
if: github.event_name != 'pull_request' || !startsWith(github.base_ref, 'bump-meilisearch-v') || github.actor != 'dependabot[bot]'
2425
runs-on: ubuntu-latest
2526
name: Code Coverage
2627
steps:

0 commit comments

Comments
 (0)