Add event subscriber to include situation updates for full banner width alerts #105
Workflow file for this run
This file contains 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: Delete Tugboat Preview | |
on: | |
pull_request: | |
types: | |
- closed | |
paths-ignore: | |
- '**.md' | |
jobs: | |
tugboat_delete_preview: | |
runs-on: self-hosted | |
env: | |
NODE_EXTRA_CA_CERTS: /etc/ssl/certs/ca-certificates.crt | |
name: Delete Tugboat Preview | |
steps: | |
- name: Restore Preview ID | |
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 | |
with: | |
path: .tugboat_preview.txt | |
key: ${{ runner.os }}-tugboat-preview-id-pr-${{ github.event.pull_request.number }} | |
- name: Set Preview ID | |
run: | | |
if ! [ -f .tugboat_preview.txt ]; then | |
echo "Preview ID not found, please manually delete Tugboat Preview. Contact platform-cms-qa on Github or CMS QA Engineers in #cms-support on Slack for assistance." | |
exit 1 | |
fi | |
PREVIEW_ID=$(cat .tugboat_preview.txt) | |
echo "Preview ID: ${PREVIEW_ID}" | |
echo "PREVIEW_ID=$PREVIEW_ID" >> $GITHUB_ENV | |
- name: Cleanup temporary file | |
run: rm .tugboat_preview.txt | |
- name: Delete Tugboat Preview | |
run: | | |
curl --fail \ | |
-H "Authorization: Bearer ${{ secrets.TUGBOAT_API_TOKEN }}" \ | |
-H "Content-Type: application/json" \ | |
-X DELETE \ | |
-d '{ "force": "false" }' \ | |
https://api.tugboat.vfs.va.gov/v3/previews/${{ env.PREVIEW_ID }} |