postfix-cookbook/.github/workflows/branchcleanup.yml
Xorima Bot 987b77f591 Standardise files with files in chef-cookbooks/repo-management
Signed-off-by: Xorima Bot <xorimabot@avon-lea.co.uk>
2020-04-16 11:03:14 +00:00

18 lines
384 B
YAML

---
name: Branch Cleanup
# This workflow is triggered on all closed pull requests.
# However the script does not do anything if 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