Skip to content

Commit

Permalink
Create delete_branch_on_close_PR.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rimarala authored Nov 3, 2021
1 parent fb36d6e commit 0f6a67c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/delete_branch_on_close_PR.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
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:
exclude: develop
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 0f6a67c

Please sign in to comment.