Bump crate-ci/typos from 1.15.10 to 1.16.1 #16
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] | |
jobs: | |
doc-preview-cleanup: | |
# Do not run on forks to avoid authorization errors | |
# Source: https://github.community/t/have-github-action-only-run-on-master-repo-and-not-on-forks/140840/18 | |
if: github.repository_owner == 'trixi-framework' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout gh-pages branch | |
uses: actions/checkout@v3 | |
with: | |
ref: gh-pages | |
- name: Delete preview and history | |
shell: bash | |
run: | | |
git config user.name "Documenter.jl" | |
git config user.email "[email protected]" | |
git rm -rf --ignore-unmatch "previews/PR$PRNUM" | |
git commit -m "delete preview" --allow-empty | |
git branch gh-pages-new $(echo "delete history" | git commit-tree HEAD^{tree}) | |
env: | |
PRNUM: ${{ github.event.number }} | |
- name: Push changes | |
run: | | |
git push --force origin gh-pages-new:gh-pages |