Skip to content

Commit

Permalink
Creates Branch Cleanup Worflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerSchill committed Oct 12, 2019
1 parent eda316e commit 78fc870
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/branchcleanup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Branch Cleanup
# This workflow is triggered on all closed pull requests.
# However the script does not do anything it a merge was not performed.
on:
pull_request:
types: [closed]

env:
NO_BRANCH_DELETED_EXIT_CODE: 0
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: jessfraz/branch-cleanup-action@master

0 comments on commit 78fc870

Please sign in to comment.