Skip to content

Commit b65214a

Browse files
authored
Change order of branches conditions in beta CI
The order made that the second condition was overriding the first one. Making the tests run anyway on bump beta;s
1 parent c05cb7e commit b65214a

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)