aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/automerge.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/automerge.yml')
-rw-r--r--.github/workflows/automerge.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml
new file mode 100644
index 000000000..85c6dc0d2
--- /dev/null
+++ b/.github/workflows/automerge.yml
@@ -0,0 +1,31 @@
+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@v0.7.5"
+ env:
+ GITHUB_TOKEN: "${{ secrets.BOT_MASTER_RW_GITHUB_TOKEN }}"
+ MERGE_LABELS: "automerge,!wip"
+ MERGE_REMOVE_LABELS: "automerge"
+ MERGE_METHOD: "merge"
+ MERGE_COMMIT_MESSAGE: "pull-request-title-and-description"
+ MERGE_FORKS: "false"
+ MERGE_RETRIES: "6"
+ MERGE_RETRY_SLEEP: "10000"