1
0
mirror of https://github.com/taigrr/bitcask synced 2025-01-18 04:03:17 -08:00

Added auto merge workflow

This commit is contained in:
James Mills 2020-01-26 14:11:25 +10:00
parent 433e1b1aed
commit b5b9e07c96
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6

32
.github/workflows/automerge.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: automerge
on:
pull_request:
types:
- labeled
- unlabeled
- synchronize
- opened
- edited
- ready_for_review
- reopened
- unlocked
pull_request_review:
types:
- submitted
status: {}
jobs:
automerge:
runs-on: ubuntu-latest
steps:
- name: automerge
uses: "pascalgn/automerge-action@a4b03eff945989d41c623c2784d6602560b91e5b"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
MERGE_LABELS: ""
MERGE_METHOD: "squash"
MERGE_COMMIT_MESSAGE: "automatic"
MERGE_FORKS: "false"
MERGE_RETRIES: "6"
MERGE_RETRY_SLEEP: "10000"
UPDATE_LABELS: ""
UPDATE_METHOD: "rebase"