8000
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 9d4a30d commit 16d5d5bCopy full SHA for 16d5d5b
.github/workflows/auto-merge.yml
@@ -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