You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Update action.yml: runs.using from node20 to node24
- Update .nvmrc: 20.8.1 to 24.14.0
- Update tsconfig.json: @tsconfig/node20 to @tsconfig/node24
- Update package.json: @tsconfig/node24 ^24.0.1, typescript ^5.9.3
- Rebuild lib/index.js and lib/cleanup/index.js with ncc + TS 5.9.3
- Update README and repo URLs for andyghc fork
Based on PR #449 by @yysu (thollander/actions-comment-pull-request)
Copy file name to clipboardExpand all lines: README.md
+11-8Lines changed: 11 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
# Comment Pull Request - GitHub Actions
2
2
3
+
> **Fork maintained by @andyghc** — Node.js 24 runtime (upstream stuck on Node 20).
4
+
> Based on [thollander/actions-comment-pull-request](https://github.com/thollander/actions-comment-pull-request) v3.0.1 with Node 20→24 upgrade from [PR #449](https://github.com/thollander/actions-comment-pull-request/pull/449).
5
+
3
6
## What is it ?
4
7
5
8
A GitHub action that comments with a given message the pull request linked to the pushed branch.
@@ -21,7 +24,7 @@ jobs:
21
24
uses: actions/checkout@v3
22
25
23
26
- name: Comment PR
24
-
uses: thollander/actions-comment-pull-request@v3
27
+
uses: andyghc/actions-comment-pull-request@v3
25
28
with:
26
29
message: |
27
30
Hello world ! :wave:
@@ -35,7 +38,7 @@ You can either pass an absolute file-path or a relative one that will be by defa
35
38
36
39
```yml
37
40
- name: PR comment with file
38
-
uses: thollander/actions-comment-pull-request@v3
41
+
uses: andyghc/actions-comment-pull-request@v3
39
42
with:
40
43
file-path: /path/to/file.txt
41
44
```
@@ -48,7 +51,7 @@ It takes only valid reactions and adds it to the comment you've just created. (S
48
51
49
52
```yml
50
53
- name: PR comment with reactions
51
-
uses: thollander/actions-comment-pull-request@v3
54
+
uses: andyghc/actions-comment-pull-request@v3
52
55
with:
53
56
message: |
54
57
Hello world ! :wave:
@@ -63,7 +66,7 @@ That is particularly useful for manual workflow for instance (`workflow_run`).
63
66
```yml
64
67
...
65
68
- name: Comment PR
66
-
uses: thollander/actions-comment-pull-request@v3
69
+
uses: andyghc/actions-comment-pull-request@v3
67
70
with:
68
71
message: |
69
72
Hello world ! :wave:
@@ -83,7 +86,7 @@ _That is particularly interesting while committing multiple times in a PR and th
0 commit comments