Add automerge workflow

This commit is contained in:
CrazyMax 2020-05-11 19:15:12 +02:00
parent 14b3dfee6d
commit 2624ea18fb
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7

46
.github/workflows/automerge.yml vendored Normal file
View file

@ -0,0 +1,46 @@
name: automerge
on:
pull_request:
types:
- labeled
- unlabeled
- synchronize
- unlocked
check_suite:
types:
- completed
status: {}
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
steps:
-
name: Approve
uses: actions/github-script@0.9.0
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
await github.pulls.createReview({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.pull_request.number,
event: 'APPROVE'
})
-
name: Wait
run: sleep 3
-
name: Merge
uses: actions/github-script@0.9.0
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
await github.pulls.merge({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.pull_request.number,
merge_method: 'squash'
})