8000 Create auto-merge.yml · tj-python/github-deploy@16d5d5b · GitHub
[go: up one dir, main page]

Skip to content

Commit 16d5d5b

Browse files
authored
Create auto-merge.yml
1 parent 9d4a30d commit 16d5d5b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/auto-merge.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: automerge
2+
on:
3+
check_suite:
4+
types:
5+
- completed
6+
7+
jobs:
8+
automerge:
9+
runs-on: ubuntu-latest
10+
if: |
11+
github.actor == 'dependabot[bot]' ||
12+
github.actor == 'dependabot' ||
13+
github.actor == 'dependabot-preview[bot]' ||
14+
github.actor == 'dependabot-preview' ||
15+
github.actor == 'renovate[bot]' ||
16+
github.actor == 'renovate'
17+
steps:
18+
- name: automerge
19+
uses: pascalgn/automerge-action@v0.15.3
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
22+
MERGE_METHOD: "rebase"
23+
UPDATE_METHOD: "rebase"
24+
MERGE_RETRIES: "6"
25+
MERGE_RETRY_SLEEP: "100000"
26+
MERGE_LABELS: ""

0 commit comments

Comments
 (0)
0