docs(elements/ino-nav-drawer): update ino-nav-drawer docs to clarify usage for navigation #492
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: Destroy Unicorn | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [closed] | |
jobs: | |
destroy-unicorn: | |
if: github.ref != 'refs/heads/master' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: pages | |
- uses: rlespinasse/github-slug-action@v3.x | |
- name: Delete Unicorn from github | |
uses: EndBug/add-and-commit@v9 | |
with: | |
branch: pages | |
message: Destroying unicorn ${{ env.GITHUB_REF_NAME_SLUG }} 🦄 | |
remove: -r unicorn/${{ env.GITHUB_REF_NAME_SLUG }} |