Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/preview-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Comment PR with preview starting
id: start_comment
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const prNumber = Number(process.env.PR_NUMBER);
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:

- name: Update PR comment with preview link
if: success()
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
COMMENT_ID: ${{ steps.start_comment.outputs.comment_id }}
PREVIEW_URL: ${{ env.DEPLOY_URL }}
Expand All @@ -140,7 +140,7 @@ jobs:

- name: Update PR comment on failure
if: failure() && steps.start_comment.outputs.comment_id
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
COMMENT_ID: ${{ steps.start_comment.outputs.comment_id }}
with:
Expand Down