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 1010jobs :
1111 checker :
1212 runs-on : ubuntu-latest
13- if : " !contains(github.event.head_commit.message , '[skip ci ]')"
13+ if : ${{ !contains(github.event.pull_request.title , '[skip checker ]') }}
1414 steps :
1515 - name : Checkout repository
1616 uses : actions/checkout@v4
2323
2424 test-ee :
2525 runs-on : ubuntu-latest
26- if : " !contains(github.event.head_commit.message , '[skip ci ]')"
26+ if : ${{ !contains(github.event.pull_request.title , '[skip checker ]') }}
2727 strategy :
2828 matrix :
2929 shard : [1, 2, 3, 4]
4444
4545 test-ce :
4646 runs-on : ubuntu-latest
47- if : " !contains(github.event.head_commit.message , '[skip ci ]')"
47+ if : ${{ !contains(github.event.pull_request.title , '[skip checker ]') }}
4848 steps :
4949 - name : Checkout repository
5050 uses : actions/checkout@v4
6262
6363 report :
6464 runs-on : ubuntu-latest
65- if : " !contains(github.event.head_commit.message , '[skip ci ]')"
65+ if : ${{ !contains(github.event.pull_request.title , '[skip checker ]') }}
6666 needs : [test-ee, test-ce]
6767 steps :
6868 - name : Checkout repository
You can’t perform that action at this time.
0 commit comments