mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-24 03:03:50 +08:00
26 lines
678 B
YAML
26 lines
678 B
YAML
name: automerge
|
|
on:
|
|
check_suite:
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
automerge:
|
|
runs-on: ubuntu-latest
|
|
if: |
|
|
github.actor == 'dependabot[bot]' ||
|
|
github.actor == 'dependabot' ||
|
|
github.actor == 'dependabot-preview[bot]' ||
|
|
github.actor == 'dependabot-preview' ||
|
|
github.actor == 'renovate[bot]' ||
|
|
github.actor == 'renovate'
|
|
steps:
|
|
- name: automerge
|
|
uses: pascalgn/automerge-action@v0.15.5
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
|
|
MERGE_METHOD: "rebase"
|
|
UPDATE_METHOD: "rebase"
|
|
MERGE_RETRIES: "6"
|
|
MERGE_RETRY_SLEEP: "100000"
|
|
MERGE_LABELS: "" |