Skip to content

Branch Deleted

Branch Deleted #26

Workflow file for this run

name: Branch Deleted
on:
delete:
workflow_call:
workflow_dispatch:
jobs:
delete:
if: github.event.ref_type == 'branch'
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Clean up
run: |
gh release delete "BRANCH_${{ github.event.ref }}" -y --cleanup-tag
env:
GH_TOKEN: ${{ github.token }}