Skip to content

Commit a609869

Browse files
Merge #833
833: Change order of branches conditions in beta CI r=bidoubiwa a=bidoubiwa The order made that the second condition was overriding the first one. Making the tests run anyway on bump beta;s Co-authored-by: cvermand <[email protected]>
2 parents 77947b5 + b65214a commit a609869

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/beta-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ name: Beta tests
44
# Will only run for PRs and pushes to *-beta
55
on:
66
push:
7-
branches: ['!bump-meilisearch-v*.*.*-beta', '**-beta']
7+
branches: ['**-beta', '!bump-meilisearch-v[0-9]*.[0-9]*.[0-9]*-beta']
88
pull_request:
9-
branches: ['!bump-meilisearch-v*.*.*-beta', '**-beta']
9+
branches: ['**-beta', '!bump-meilisearch-v[0-9]*.[0-9]*.[0-9]*-beta']
1010

1111
jobs:
1212
meilisearch-version:

0 commit comments

Comments
 (0)