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
Copy file name to clipboardExpand all lines: .github/workflows/pull_request.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ jobs:
35
35
uses: actions/github-script@v7
36
36
with:
37
37
script: |
38
-
github.issues.createComment({
38
+
github.rest.issues.createComment({
39
39
owner: context.repo.owner,
40
40
repo: context.repo.repo,
41
41
issue_number: context.issue.number,
@@ -48,7 +48,7 @@ jobs:
48
48
The author will review the changes shortly, and we look forward to merging your contributions into the project. Thank you for your hard work and dedication! 🎉`
49
49
});
50
50
51
-
github.issues.addLabels({
51
+
github.rest.issues.addLabels({
52
52
owner: context.repo.owner,
53
53
repo: context.repo.repo,
54
54
issue_number: context.issue.number,
@@ -63,7 +63,7 @@ jobs:
63
63
uses: actions/github-script@v7
64
64
with:
65
65
script: |
66
-
github.issues.createComment({
66
+
github.rest.issues.createComment({
67
67
owner: context.repo.owner,
68
68
repo: context.repo.repo,
69
69
issue_number: context.issue.number,
@@ -76,7 +76,7 @@ jobs:
76
76
Feel free to reach out if you have any questions or need assistance. We appreciate your effort in improving our codebase! 🙏`
0 commit comments