Skip to content
This repository has been archived by the owner on Jun 27, 2021. It is now read-only.

Commit

Permalink
Merge pull request #9 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 596758a + 734ec5f commit 7964780
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 7964780

Please sign in to comment.