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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ jobs:
target-folder: "${{ steps.branch-name.outputs.current_branch }}"

- name: Find PR Number
uses: actions/github-script@v8
uses: actions/github-script@v9
id: get_pr_number
if: github.actor != 'dependabot[bot]' && steps.deployment.outputs.deployment-status == 'success'
with:
Expand All @@ -206,7 +206,7 @@ jobs:
result-encoding: string

- name: Get PR State
uses: actions/github-script@v8
uses: actions/github-script@v9
id: get_pr_state
if: github.actor != 'dependabot[bot]' && steps.get_pr_number.outputs.result != 'null' && steps.deployment.outputs.deployment-status == 'success'
with:
Expand All @@ -231,7 +231,7 @@ jobs:

- name: Link Deployment in Pull Request Comment
if: github.actor != 'dependabot[bot]' && steps.get_pr_number.outputs.result != 'null' && steps.deployment.outputs.deployment-status == 'success' && steps.get_pr_state.outputs.result == 'open' && steps.comment.outputs.comment-id == ''
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
github.rest.issues.createComment({
Expand Down
Loading