Skip to content

Commit 9ccce66

Browse files
committed
Fix broken CI labels check
Signed-off-by: Thomas Hallgren <[email protected]>
1 parent 5fc173b commit 9ccce66

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/dev.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99

1010
jobs:
1111
build_images:
12-
if: github.event.label.name == 'ok to test' || github.event.label.name == 'compatibility test'
12+
if: ${{ github.event.label.name == 'ok to test' || github.event.label.name == 'compatibility test' }}
1313
runs-on: ubuntu-latest
1414
outputs:
1515
telepresenceVersion: ${{ steps.version.outputs.version }}
@@ -62,7 +62,7 @@ jobs:
6262
run: docker logout
6363

6464
run_tests:
65-
if: github.event.label.name == 'ok to test' || github.event.label.name == 'compatibility test'
65+
if: ${{ github.event.label.name == 'ok to test' || github.event.label.name == 'compatibility test' }}
6666
strategy:
6767
fail-fast: false
6868
matrix:
@@ -101,7 +101,7 @@ jobs:
101101
fi
102102
make check-integration
103103
- name: Compatibility with older manager and agent
104-
if: github.event.label.name == 'compatibility test'
104+
if: ${{ github.event.label.name == 'compatibility test' }}
105105
env:
106106
DEV_MANAGER_VERSION: "2.21.3"
107107
uses: nick-fields/retry/@v3
@@ -116,7 +116,7 @@ jobs:
116116
fi
117117
make check-integration
118118
- name: Compatibility with older client
119-
if: github.event.label.name == 'compatibility test'
119+
if: ${{ github.event.label.name == 'compatibility test' }}
120120
env:
121121
DEV_CLIENT_VERSION: "2.21.3"
122122
uses: nick-fields/retry/@v3

0 commit comments

Comments
 (0)