Skip to content

Commit 6313e6f

Browse files
authored
fix GitHub CI plugin warnings (#121)
* fix GitHub CI plugin warnings Signed-off-by: Cocoa <i@uwucocoa.moe> --------- Signed-off-by: Cocoa <i@uwucocoa.moe>
1 parent e244c35 commit 6313e6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717

1818
jobs:
1919
linux:
20-
if: "!contains(github.event.pull_request.labels.*.name, 'skip ci')"
20+
if: contains(github.event.pull_request.labels.*.name, 'skip ci') != true
2121
runs-on: ubuntu-20.04
2222
env:
2323
MIX_ENV: test
@@ -46,7 +46,7 @@ jobs:
4646
mix test
4747
4848
windows:
49-
if: "!contains(github.event.pull_request.labels.*.name, 'skip ci')"
49+
if: contains(github.event.pull_request.labels.*.name, 'skip ci') != true
5050
runs-on: windows-latest
5151
env:
5252
MIX_ENV: test
@@ -69,7 +69,7 @@ jobs:
6969
mix test --exclude postgresql
7070
7171
macos:
72-
if: "!contains(github.event.pull_request.labels.*.name, 'skip ci')"
72+
if: contains(github.event.pull_request.labels.*.name, 'skip ci') != true
7373
runs-on: macos-13
7474
env:
7575
MIX_ENV: test

0 commit comments

Comments
 (0)