Skip to content

Commit

Permalink
fix GitHub CI plugin warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Cocoa <[email protected]>
  • Loading branch information
cocoa-xu committed Jan 27, 2025
1 parent e244c35 commit 10e3565
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

jobs:
linux:
if: "!contains(github.event.pull_request.labels.*.name, 'skip ci')"
if: contains(github.event.pull_request.labels.*.name, 'skip ci') == 'false'
runs-on: ubuntu-20.04
env:
MIX_ENV: test
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
mix test
windows:
if: "!contains(github.event.pull_request.labels.*.name, 'skip ci')"
if: contains(github.event.pull_request.labels.*.name, 'skip ci') == 'false'
runs-on: windows-latest
env:
MIX_ENV: test
Expand All @@ -69,7 +69,7 @@ jobs:
mix test --exclude postgresql
macos:
if: "!contains(github.event.pull_request.labels.*.name, 'skip ci')"
if: contains(github.event.pull_request.labels.*.name, 'skip ci') == 'false'
runs-on: macos-13
env:
MIX_ENV: test
Expand Down

0 comments on commit 10e3565

Please sign in to comment.