forked from camas/setuptools-git-ver
-
-
Notifications
You must be signed in to change notification settings - Fork 23
27 lines (22 loc) · 798 Bytes
/
automerge.yml
File metadata and controls
27 lines (22 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Automerge
on:
pull_request_target:
jobs:
automerge:
name: Enable pull request automerge
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'pre-commit-ci[bot]' || github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- uses: alexwilson/enable-github-automerge-action@2.0.0
with:
github-token: ${{ secrets.PERSONAL_TOKEN }}
merge-method: REBASE
autoapprove:
name: Automatically approve pull request
needs: [automerge]
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'pre-commit-ci[bot]' || github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- uses: hmarr/auto-approve-action@v4
with:
github-token: ${{ secrets.PERSONAL_TOKEN }}