Skip to content

Commit c3c5800

Browse files
Merge commit '4305746ff619052e5be27431aca2a9da74ab96c4' into release/next-v0.1.9
2 parents fe7beb2 + 4305746 commit c3c5800

File tree

2 files changed

+7
-18
lines changed

2 files changed

+7
-18
lines changed

.github/workflows/add-release-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
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: |
@@ -39,7 +39,7 @@ jobs:
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: |

.github/workflows/ci.yml

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff 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
@@ -66,15 +61,9 @@ jobs:
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

0 commit comments

Comments
 (0)