File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 38
38
yarn standard-version --skip.changelog --skip.commit --skip.tag
39
39
40
40
- name : Generate name for artifact
41
- uses : actions/github-script@v6.4.0
41
+ uses : actions/github-script@v6.4.1
42
42
id : version
43
43
with :
44
44
result-encoding : string
Original file line number Diff line number Diff line change 13
13
if : ${{ github.event.workflow_run.event == 'pull_request' }}
14
14
steps :
15
15
- name : Download artifact
16
- uses : actions/github-script@v6.4.0
16
+ uses : actions/github-script@v6.4.1
17
17
with :
18
18
script : |
19
19
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
38
38
39
39
- name : Delete label
40
40
id : label
41
- uses : actions/github-script@v6.4.0
41
+ uses : actions/github-script@v6.4.1
42
42
with :
43
43
result-encoding : string
44
44
script : |
58
58
}
59
59
60
60
- name : Comment on PR
61
- uses : actions/github-script@v6.4.0
61
+ uses : actions/github-script@v6.4.1
62
62
if : ${{ steps.label.outputs.result == 'wait-to-build' }}
63
63
with :
64
64
script : |
73
73
});
74
74
75
75
- name : Clear artifact
76
- uses : actions/github-script@v6.4.0
76
+ uses : actions/github-script@v6.4.1
77
77
with :
78
78
script : |
79
79
const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
Original file line number Diff line number Diff line change 22
22
if : contains(github.event.pull_request.labels.*.name, 'prepare-release')
23
23
steps :
24
24
- name : Clear label
25
- uses : actions/github-script@v6.4.0
25
+ uses : actions/github-script@v6.4.1
26
26
env :
27
27
NUMBER : ${{ github.event.number }}
28
28
with :
60
60
npx prettier --write CHANGELOG.md --prose-wrap never --ignore-path ./gitignore
61
61
62
62
- name : Get version from package.json
63
- uses : actions/github-script@v6.4.0
63
+ uses : actions/github-script@v6.4.1
64
64
id : version
65
65
with :
66
66
result-encoding : string
90
90
path : ./CHANGELOG.md
91
91
92
92
- name : Prepare release PR
93
- uses : actions/github-script@v6.4.0
93
+ uses : actions/github-script@v6.4.1
94
94
env :
95
95
TITLE : ${{ steps.version.outputs.title }}
96
96
CHANGELOG : ${{ steps.changelog-reader.outputs.changes }}
Original file line number Diff line number Diff line change 34
34
yarn prettier --write CHANGELOG.md --prose-wrap never --ignore-path ./gitignore
35
35
36
36
- name : Get version from package.json
37
- uses : actions/github-script@v6.4.0
37
+ uses : actions/github-script@v6.4.1
38
38
id : version
39
39
with :
40
40
result-encoding : string
You can’t perform that action at this time.
0 commit comments