Skip to content

Commit

Permalink
Fix skip checks
Browse files Browse the repository at this point in the history
The arguments were inverted, so it was skipping specs for any pull
request with an empty body.
  • Loading branch information
nex3 committed Jan 9, 2021
1 parent f4d2324 commit ef89bfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
dart_sass:
name: Dart Sass
runs-on: ubuntu-latest
if: "github.event_name != 'pull_request' || !contains('skip dart-sass', github.event.pull_request.body)"
if: "github.event_name != 'pull_request' || !contains(github.event.pull_request.body, 'skip dart-sass')"

steps:
- uses: actions/checkout@v2
Expand All @@ -60,7 +60,7 @@ jobs:
libsass:
name: LibSass
runs-on: ubuntu-latest
if: "github.event_name != 'pull_request' || !contains('skip libsass', github.event.pull_request.body)"
if: "github.event_name != 'pull_request' || !contains(github.event.pull_request.body, 'skip libsass')"

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit ef89bfd

Please sign in to comment.