We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3df9fb5 commit bb2576bCopy full SHA for bb2576b
.github/workflows/automerge.yml
@@ -0,0 +1,30 @@
1
+name: Automatically Merge Approved PRs
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - opened
7
+ - edited
8
+ - labeled
9
+ - reopened
10
+ pull_request_review:
11
12
+ - submitted
13
+ check_suite:
14
15
+ - completed
16
17
+jobs:
18
+ automerge:
19
+ name: Automerge
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - name: Automatically Merge
23
+ uses: NGL321/automerge-action@main
24
+ env:
25
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
26
+ LOG: "TRACE"
27
+ MERGE_LABELS: "!pr/do-not-merge"
28
+ MERGE_METHOD: "squash"
29
+ MERGE_COMMIT_MESSAGE: "pull-request-title-and-description"
30
+ MERGE_DELETE_BRANCH: "true"
0 commit comments