Skip to content

Commit 30a0da2

Browse files
chore: use latest github-script v7, fix: typo (#600)
1 parent 2285c0a commit 30a0da2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/add-comment-on-pr-creation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Add GitHub Comment for review app instructions
12-
uses: actions/github-script@v6
12+
uses: actions/github-script@v7
1313
with:
1414
script: |
1515
github.rest.issues.createComment({

.github/workflows/deploy-to-control-plane-review.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ jobs:
4545

4646
- name: Add GitHub Comment
4747
if: ${{ github.event_name == 'issue_comment' }}
48-
uses: actions/github-script@v6
48+
uses: actions/github-script@v7
4949
with:
5050
script: |
5151
github.rest.issues.createComment({
5252
issue_number: context.issue.number,
5353
owner: context.repo.owner,
5454
repo: context.repo.repo,
55-
body: "We started working on your review-app deployment. You can track progress in the "Actions" Tab [here](https://github.com/shakacode/react-webpack-rails-tutorial/actions/workflows/deploy-to-control-plane-review.yml) on Github."
55+
body: "We started working on your review-app deployment. You can track progress in the `Actions` Tab [here](https://github.com/shakacode/react-webpack-rails-tutorial/actions/workflows/deploy-to-control-plane-review.yml) on Github."
5656
})
5757
5858
- name: Get PR number

0 commit comments

Comments
 (0)