Skip to content

Commit

Permalink
Merge pull request #21 from sous-chefs/workflow
Browse files Browse the repository at this point in the history
Adds Pull Request Cleanup Workflow
  • Loading branch information
xorima authored Oct 14, 2019
2 parents 91c0f8c + 3c28597 commit dbff3fc
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/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 dbff3fc

Please sign in to comment.