Add purify radioastronomy benchmarks #38
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: Doc Preview Cleanup | |
on: | |
pull_request: | |
types: [closed] | |
concurrency: | |
# Same group concurrency as the `docs.yml` workflow, because they both | |
# git-push to the same branch, so we want to avoid clashes. | |
group: docs-pushing | |
jobs: | |
doc-preview-cleanup: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout gh-pages branch | |
uses: actions/checkout@v4 | |
with: | |
ref: gh-pages | |
- name: Delete preview and push changes | |
run: | | |
preview_directory=preview/PR${{ github.event.number }} | |
if [[ -d "${preview_directory}" ]]; then | |
git config user.name "${{github.actor}}" | |
git config user.email "${{github.actor_id}}+${{github.actor}}@users.noreply.github.com" | |
git rm -rf "${preview_directory}" | |
git commit -m 'Cleanup docs for PR #${{ github.event.number }}' | |
git push origin gh-pages | |
fi |