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 6296993 commit 47e1266Copy full SHA for 47e1266
.github/workflows/coverage.yml
@@ -20,7 +20,8 @@ jobs:
20
coverage:
21
# Will not run if the event is a PR to bump-meilisearch-v* (so a pre-release PR)
22
# Will still run for each push to bump-meilisearch-v*
23
- if: github.event_name != 'pull_request' || !startsWith(github.base_ref, 'bump-meilisearch-v')
+ # 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]'
25
runs-on: ubuntu-latest
26
name: Code Coverage
27
steps:
0 commit comments