Skip to content
Open
Show file tree
Hide file tree
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/deploy-web-hosting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
# --- PR Comments ---
- name: Comment on PR (Deploy Success)
if: ${{ success() && github.event_name == 'pull_request' }}
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4
env:
DEPLOY_URL: ${{ inputs.home-url }}${{ steps.compute-path.outputs.deploy-path }}/
RESULT_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
Expand All @@ -147,7 +147,7 @@ jobs:

- name: Comment on PR (Deploy Failure)
if: ${{ failure() && github.event_name == 'pull_request' }}
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4
with:
header: deploy-failed
hide_and_recreate: true
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
# --- Hide Previous Failed Comments ---
- name: Hide previous deploy failure comments
if: ${{ success() && github.event_name == 'pull_request' }}
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4
with:
header: deploy-failed
hide: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/undeploy-web-hosting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
# --- PR Comments ---
- name: Comment on PR (Undeploy Success)
if: ${{ success() && github.event_name == 'pull_request' }}
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4
with:
header: delete-pr-preview-success
message: |
Expand All @@ -95,7 +95,7 @@ jobs:

- name: Comment on PR (Undeploy Failure)
if: ${{ failure() && github.event_name == 'pull_request' }}
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4
with:
header: delete-pr-preview-failed
hide_and_recreate: true
Expand All @@ -107,15 +107,15 @@ jobs:

- name: Hide previous undeploy failure comments
if: ${{ success() && github.event_name == 'pull_request' }}
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4
with:
header: delete-pr-preview-failed
hide: true
hide_classify: 'RESOLVED'

- name: Hide previous deploy success comments
if: ${{ success() && github.event_name == 'pull_request' }}
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4
with:
header: deploy-pr-preview-success
hide: true
Expand Down
Loading