build(deps-dev): bump the prettier group with 1 update #536
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: 'Clear docs for closed PR' | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: gh-pages | |
- name: Remove docs | |
run: rm -rf pull/${{ github.event.pull_request.number }} | |
- name: Unpublish docs | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'Remove PR ${{ github.event.pull_request.number }}' | |
branch: gh-pages |