File tree Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Expand file tree Collapse file tree 3 files changed +26
-1
lines changed File renamed without changes.
Original file line number Diff line number Diff line change
1
+ name : ' Issue Comments'
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+ jobs :
7
+ issue-comment :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v3
11
+ with :
12
+ token : ${{ secrets.ACCESS_TOKEN }}
13
+ fetch-depth : 0
14
+
15
+ # ## Semantic Release Bot comments for issues and PRs ###
16
+ - name : Add release comments to issues and PRs
17
+ uses : actions/github-script@v6
18
+ env :
19
+ GH_TOKEN : ${{ secrets.ACCESS_TOKEN }}
20
+ with :
21
+ script : |
22
+ import script from '${{ github.workspace }}/.github/createIssueCommentsForRelease.mjs';
23
+
24
+ await script({ github: github.rest, context })
25
+
Original file line number Diff line number Diff line change 64
64
GH_TOKEN : ${{ secrets.ACCESS_TOKEN }}
65
65
with :
66
66
script : |
67
- import script from '${{ github.workspace }}/.github/createIssueCommentsForRelease.js ';
67
+ import script from '${{ github.workspace }}/.github/createIssueCommentsForRelease.mjs ';
68
68
69
69
await script({ github: github.rest, context })
70
70
You can’t perform that action at this time.
0 commit comments