File tree Expand file tree Collapse file tree 2 files changed +7
-18
lines changed Expand file tree Collapse file tree 2 files changed +7
-18
lines changed Original file line number Diff line number Diff line change 2828 env :
2929 HEAD_REF : ${{ github.head_ref }}
3030 if : startsWith(github.head_ref, 'release/v')
31- - uses : actions/github-script@0.4.0
31+ - uses : actions/github-script@v3
3232 with :
3333 github-token : ${{ secrets.ACCESS_TOKEN }}
3434 script : |
3939 sha: context.sha
4040 })
4141 if : env.NEXT_VERSION
42- - uses : actions/github-script@0.4.0
42+ - uses : actions/github-script@v3
4343 with :
4444 github-token : ${{ secrets.ACCESS_TOKEN }}
4545 script : |
Original file line number Diff line number Diff line change @@ -10,21 +10,16 @@ jobs:
1010 env :
1111 LINT : 1
1212 steps :
13- - uses : technote-space/auto-cancel-redundant-job @v1
13+ - uses : technote-space/auto-cancel-redundant-workflow @v1
1414 with :
1515 EXCLUDE_MERGED : ' true'
1616 - name : Set running flag
1717 run : echo "RUNNING=1" >> $GITHUB_ENV
1818 - uses : actions/checkout@v2
1919 - uses : technote-space/get-git-comment-action@v1
20- - uses : technote-space/get-diff-action@v1
20+ - uses : technote-space/get-diff-action@v4
2121 with :
22- PREFIX_FILTER : |
23- src/
24- __tests__/
25- SUFFIX_FILTER : |
26- .js
27- .ts
22+ PATTERNS : +(src|__tests__)/**/*.+(js|ts)
2823 FILES : .eslintrc
2924 if : " ! contains(env.COMMIT_MESSAGE, '[skip ci]') && ! contains(env.COMMIT_MESSAGE, '[ci skip]')"
3025 - name : Set running flag
6661 run : echo "RUNNING=1" >> $GITHUB_ENV
6762 - uses : actions/checkout@v2
6863 - uses : technote-space/get-git-comment-action@v1
69- - uses : technote-space/get-diff-action@v1
64+ - uses : technote-space/get-diff-action@v4
7065 with :
71- PREFIX_FILTER : |
72- src/
73- __tests__/
74- SUFFIX_FILTER : |
75- .js
76- .ts
77- .snap
66+ PATTERNS : +(src|__tests__)/**/*.+(js|ts|snap)
7867 FILES : |
7968 yarn.lock
8069 jest.config.js
You can’t perform that action at this time.
0 commit comments