File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1111
1212jobs :
1313 lint :
14- if : ' !contains(github.event.head_commit.message, " [skip check]") '
14+ if : ${{ !contains(github.event.head_commit.message, ' [skip check]') }}
1515 runs-on : ubuntu-latest
1616 steps :
1717 - uses : actions/checkout@v3
3535 run : nr lint
3636
3737 typecheck :
38- if : ' !contains(github.event.head_commit.message, " [skip check]"") '
38+ if : ${{ !contains(github.event.head_commit.message, ' [skip check]') }}
3939 runs-on : ubuntu-latest
4040 steps :
4141 - uses : actions/checkout@v3
5959 run : nr typecheck
6060
6161 test :
62- if : ' !contains(github.event.head_commit.message, " [skip check]") '
62+ if : ${{ !contains(github.event.head_commit.message, ' [skip check]') }}
6363 runs-on : ${{ matrix.os }}
6464
6565 strategy :
Original file line number Diff line number Diff line change @@ -2,12 +2,11 @@ name: Deploy GitHub Pages
22
33on :
44 push :
5- branches :
6- - main
5+ tags :
6+ - ' v* '
77
88jobs :
99 build-and-deploy :
10- if : ' contains(github.event.head_commit.message, "playground") || contains(github.event.head_commit.message, "all")'
1110 runs-on : ubuntu-latest
1211
1312 steps :
You can’t perform that action at this time.
0 commit comments