2021-05-11 11:07:56 -04:00
|
|
|
name: automerge
|
|
|
|
on:
|
|
|
|
check_suite:
|
|
|
|
types:
|
|
|
|
- rerequested
|
|
|
|
- completed
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
automerge:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: |
|
2021-05-28 11:23:59 -04:00
|
|
|
github.actor == 'dependabot[bot]' ||
|
|
|
|
github.actor == 'dependabot' ||
|
|
|
|
github.actor == 'dependabot-preview[bot]' ||
|
|
|
|
github.actor == 'dependabot-preview' ||
|
|
|
|
github.actor == 'renovate[bot]' ||
|
|
|
|
github.actor == 'renovate'
|
2021-05-11 11:07:56 -04:00
|
|
|
steps:
|
|
|
|
- name: automerge
|
2021-05-26 20:18:44 +00:00
|
|
|
uses: pascalgn/automerge-action@v0.14.2
|
2021-05-11 11:07:56 -04:00
|
|
|
env:
|
2021-05-28 11:41:44 -04:00
|
|
|
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN || github.token }}
|
2021-05-11 11:07:56 -04:00
|
|
|
MERGE_METHOD: "rebase"
|
|
|
|
UPDATE_METHOD: "rebase"
|
|
|
|
MERGE_RETRIES: "6"
|
2021-05-12 08:36:10 -04:00
|
|
|
MERGE_RETRY_SLEEP: "100000"
|
2021-05-11 11:28:34 -04:00
|
|
|
MERGE_LABELS: ""
|