Skip to content

Commit 5855bb4

Browse files
committed
Add auto-merge workflow action
1 parent 207d104 commit 5855bb4

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/automerge.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: automerge
2+
on:
3+
pull_request:
4+
types:
5+
- labeled
6+
- unlabeled
7+
- synchronize
8+
- opened
9+
- edited
10+
- ready_for_review
11+
- reopened
12+
- unlocked
13+
pull_request_review:
14+
types:
15+
- submitted
16+
status: {}
17+
jobs:
18+
automerge:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: automerge
22+
uses: "pascalgn/[email protected]"
23+
env:
24+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
25+
MERGE_METHOD: rebase
26+
UPDATE_METHOD: rebase

0 commit comments

Comments
 (0)