Skip to content

Improve security of our preview workflow #528

Improve security of our preview workflow

Improve security of our preview workflow #528

name: Surge.sh Preview Teardown
on:
pull_request_target:
types: [closed]
jobs:
preview-teardown:
runs-on: ubuntu-latest
steps:
- name: Teardown surge preview
id: deploy
run: npx surge teardown https://quarkus-site-pr-${{ github.event.number }}-preview.surge.sh --token ${{ secrets.SURGE_TOKEN }} || echo "NOT_TORNDOWN=true" >> "$GITHUB_ENV"
- name: Update PR status comment
uses: actions-cool/maintain-one-comment@v3.2.0
if: env.NOT_TORNDOWN != 'true'
with:
token: ${{ secrets.GITHUB_TOKEN }}
body: |
🙈 The PR is closed and the preview is expired.
<!-- Sticky Pull Request Comment -->
body-include: '<!-- Sticky Pull Request Comment -->'
number: ${{ github.event.number }}