Skip to content

Commit 2f76a9d

Browse files
Merge #1327
1327: 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: Charlotte Vermandel <[email protected]>
2 parents 1308eb9 + be88438 commit 2f76a9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/beta-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Testing the code base against a specific Meilisearch feature
22
name: Beta tests
33

4-
# Will only run for PRs and pushes to *-beta
4+
# Will only run for PRs and pushes to *-beta and not the bump betas
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)