Migrate Storylines Editor to Vue3 #99
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: Cleanup GitHub pages | |
on: | |
pull_request_target: | |
types: [closed] | |
jobs: | |
cleanup-pages: | |
name: Delete demo page when PR closed | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
with: | |
ref: 'gh-pages' | |
- name: Delete files | |
shell: bash | |
run: | | |
git config --global user.email "fengyilei1@gmail.com" | |
git config --global user.name "Yi Lei Feng" | |
git rm -r ${{ github.head_ref }}/* | |
git commit -a -m 'Delete PR demo from GH pages ${{ github.head_ref }}' | |
git push origin HEAD:gh-pages |