Skip to content

Commit e736f98

Browse files
committed
Remove comments
1 parent a3225d5 commit e736f98

File tree

2 files changed

+9
-31
lines changed

2 files changed

+9
-31
lines changed

.github/workflows/beta-tests.yml

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +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
45
on:
5-
pull_request:
66
push:
7-
# trying and staging branches are for BORS config
8-
branches:
9-
- trying
10-
- staging
11-
- main
12-
13-
# TODO: CHANGE
14-
# Will only run for PRs and pushes to *-beta
15-
# on:
16-
# push:
17-
# branches: ['!bump-meilisearch-v*.*.*-beta', '**-beta']
18-
# pull_request:
19-
# branches: ['!bump-meilisearch-v*.*.*-beta', '**-beta']
7+
branches: ['!bump-meilisearch-v*.*.*-beta', '**-beta']
8+
pull_request:
9+
branches: ['!bump-meilisearch-v*.*.*-beta', '**-beta']
2010

2111
jobs:
2212
meilisearch-version:
@@ -30,8 +20,7 @@ jobs:
3020
run: |
3121
MEILISEARCH_VERSION=$(sh .github/scripts/beta-docker-version.sh)
3222
echo $MEILISEARCH_VERSION
33-
# TODO: CHANGE
34-
echo ::set-output name=version::latest
23+
echo ::set-output name=version::$MEILISEARCH_VERSION
3524
cypress-run:
3625
runs-on: ubuntu-latest
3726
needs: ['meilisearch-version']

.github/workflows/pre-release-tests.yml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,12 @@
11
# Testing the code base against the Meilisearch pre-releases
22
name: Pre-Release Tests
33

4-
# TODO: CHANGE
54
# Will only run for PRs and pushes to bump-meilisearch-v*
6-
# on:
7-
# push:
8-
# branches: [bump-meilisearch-v*]
9-
# pull_request:
10-
# branches: [bump-meilisearch-v*]
11-
125
on:
13-
pull_request:
146
push:
15-
# trying and staging branches are for BORS config
16-
branches:
17-
- trying
18-
- staging
19-
- main
7+
branches: [bump-meilisearch-v*]
8+
pull_request:
9+
branches: [bump-meilisearch-v*]
2010

2111
jobs:
2212
meilisearch-version:
@@ -30,8 +20,7 @@ jobs:
3020
run: |
3121
MEILISEARCH_VERSION=$(curl https://raw.githubusercontent.com/meilisearch/integration-guides/main/scripts/get-latest-meilisearch-rc.sh | sh)
3222
echo $MEILISEARCH_VERSION
33-
# TODO: CHANGE
34-
echo ::set-output name=version::latest
23+
echo ::set-output name=version::$MEILISEARCH_VERSION
3524
cypress-run:
3625
runs-on: ubuntu-latest
3726
needs: ['meilisearch-version']

0 commit comments

Comments
 (0)