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 c2d6a67 commit 9244cedCopy full SHA for 9244ced
.github/workflows/coverage.yml
@@ -18,10 +18,9 @@ env:
18
19
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
# 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]'
+ # Will not run if the event is a PR to bump-meilisearch-v* (so a pre-release PR)
+ if: github.actor != 'dependabot[bot]' && !( github.event_name == 'pull_request' && startsWith(github.base_ref, 'bump-meilisearch-v') )
25
runs-on: ubuntu-latest
26
name: Code Coverage
27
steps:
0 commit comments