This repository was archived by the owner on Jun 1, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ jobs:
4343 run : yarn build
4444
4545 - name : Run Jest unit tests
46- if : " !contains(github.event.head_commit.message, 'chore( release) ')"
46+ if : " !contains(github.event.head_commit.message, 'chore: release')"
4747 run : yarn jest:ci
4848
4949 - name : Upload Jest coverage to Codecov
50- if : " !contains(github.event.head_commit.message, 'chore( release) ')"
50+ if : " !contains(github.event.head_commit.message, 'chore: release')"
5151 run : bash <(curl -s https://codecov.io/bash)
5252
5353 - name : Start server in the background
@@ -72,11 +72,11 @@ jobs:
7272 yarn build:demo
7373
7474 # deploy (re-publish) GitHub demo page with a Prod build but only when merging to "master" branch
75- # and the commit message contains the text "chore( release) "
75+ # and the commit message contains the text "chore: release"
7676 - name : Deploy to gh-pages
7777 if : |
7878 github.ref == 'refs/heads/master' &&
79- contains(github.event.head_commit.message, 'chore( release) ')
79+ contains(github.event.head_commit.message, 'chore: release')
8080 uses : peaceiris/actions-gh-pages@v3
8181 with :
8282 github_token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments