Skip to content

Commit

Permalink
Add workflow to auto merge PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbeaumont committed Jul 27, 2020
1 parent 9059e70 commit 0296abe
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/auto-merge.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: automerge
on:
pull_request:
types:
- labeled
- unlabeled
- synchronize
- opened
- edited
- ready_for_review
- reopened
- unlocked
pull_request_review:
types:
- submitted
check_suite:
types:
- completed
status: {}
jobs:
automerge:
runs-on: ubuntu-latest
steps:
- name: automerge
uses: "michaelbeaumont/automerge-action@merge_method_labels"
env:
MERGE_LABELS: ""
MERGE_METHOD: "merge"
MERGE_METHOD_LABELS: "automerge=merge,autosquash=squash"
MERGE_METHOD_LABEL_REQUIRED: "true"
# Will automatically update the head branch with
# base branch changes
# At the moment, it needs to be a separate label
UPDATE_LABELS: "autoupdate"
# This is OK because weaveworksbot only has write permissions
# if it were an admin, it might override the checks/reviews
# see pascalgn/automerge-action#65
GITHUB_TOKEN: "${{ secrets.WEAVEWORKSBOT_TOKEN }}"

0 comments on commit 0296abe

Please sign in to comment.