diff options
Diffstat (limited to '.github/main.workflow')
-rw-r--r-- | .github/main.workflow | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 00000000..8def35fb --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,9 @@ +workflow "on pull request merge, delete the branch" { + on = "pull_request" + resolves = ["branch cleanup"] +} + +action "branch cleanup" { + uses = "jessfraz/branch-cleanup-action@master" + secrets = ["GITHUB_TOKEN"] +} |