add governance page and links to threads and socials page #751
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} | |
| - name: Update PR status comment | |
| uses: actions-cool/[email protected] | |
| 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 }} |