Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 563 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 563 Bytes

Push/Run Shared Actions

A repository of shared actions to include in your workflows

Branch Cleanup

Automatically delete a pull request branch on merge.

Screenshot 2019-06-16 at 5 32 41 pm

usage:

# Add the following to your ./flow.hcl

workflow "PR branch cleanup" {
  on = "pull_request:closed"
  resolves = "branch cleanup"
}

action "branch cleanup" {
  uses = "push-run/actions/[email protected]"
}