Begin refactorings #12
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
# Candace Savonen Apr 2021 | |
name: Delete Preview | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
delete-preview: | |
runs-on: ubuntu-latest | |
steps: | |
# This is because if a PR is closed before a render finishes it won't find it. | |
- name: Sleep for 5 minutes | |
run: sleep 300s | |
shell: bash | |
# Check out current repository | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Delete the branch! | |
- name: Delete branch locally and remotely | |
run: git push origin --delete preview-${{ github.event.pull_request.number }} || echo "No branch to delete" |