Skip to content

Commit

Permalink
fixed skip-ci [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
tompahoward committed Nov 8, 2020
1 parent eaabe40 commit 72cb599
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
lint:
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"

runs-on: ubuntu-latest

Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- run: npm run lint

build:
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"

runs-on: ubuntu-latest

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
- run: npm run build

test-node-api:
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"

runs-on: ubuntu-latest

Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
SAUCE_LABS_USERNAME: ${{secrets.SAUCE_LABS_USERNAME}}

get-browser-list:
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"

runs-on: ubuntu-latest

Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:


test-browser-api:
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"

needs:
- get-browser-list
Expand Down Expand Up @@ -367,6 +367,6 @@ jobs:
git add package.json
git add package-lock.json
NEXT_VERSION=$(node -p "require('./package.json').version")
git commit -m "Version bump to $NEXT_VERSION. [skip ci]"
git commit -m "Version bump to $NEXT_VERSION. [skip-ci]"
git push origin HEAD:main

0 comments on commit 72cb599

Please sign in to comment.