@@ -10,21 +10,21 @@ jobs:
10
10
permissions :
11
11
pull-requests : write
12
12
steps :
13
- name : Add GitHub Comment for review app instructions
14
- uses : actions/github-script@v7
15
- with :
16
- script : |
17
- await github.rest.issues.createComment({
18
- owner: context.repo.owner,
19
- repo: context.repo.repo,
20
- issue_number: context.payload.pull_request.number,
21
- body: [
22
- "Hi 👋 Here are the commands available for this PR:",
23
- "",
24
- "- `/deploy-review-app`: Deploy your changes to a review environment",
25
- "- `/delete-review-app`: Clean up the review environment when you're done",
26
- "- `/help`: Show detailed information about all commands",
27
- "",
28
- "Use `/help` to see full documentation, including configuration options."
29
- ].join("\n")
30
- });
13
+ - uses : actions/github-script@v7
14
+ name : Add GitHub Comment for review app instructions
15
+ with :
16
+ script : |
17
+ await github.rest.issues.createComment({
18
+ owner: context.repo.owner,
19
+ repo: context.repo.repo,
20
+ issue_number: context.payload.pull_request.number,
21
+ body: [
22
+ "Hi 👋 Here are the commands available for this PR:",
23
+ "",
24
+ "- `/deploy-review-app`: Deploy your changes to a review environment",
25
+ "- `/delete-review-app`: Clean up the review environment when you're done",
26
+ "- `/help`: Show detailed information about all commands",
27
+ "",
28
+ "Use `/help` to see full documentation, including configuration options."
29
+ ].join("\n")
30
+ });
0 commit comments