nix-dotfiles/.github/workflows/cleanup-pr-action.yml
ahuston-0 6760cf0674
Some checks failed
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 8s
Check Nix flake / Perform Nix flake checks (pull_request) Has been cancelled
Check Nix formatting / Perform Nix format checks (pull_request) Has been cancelled
add cleanup action
2025-04-02 01:00:25 -04:00

14 lines
285 B
YAML

name: delete branch on close pr
on:
pull_request:
types: [closed]
jobs:
delete-branch:
runs-on: ubuntu-latest
steps:
- name: delete branch
uses: SvanBoxel/delete-merged-branch@main
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_FOR_PRS }}