Merge pull request #6995 from nextcloud/autoApprove

Add auto-approve for dependabot
This commit is contained in:
Tobias Kaminsky 2020-09-23 07:23:47 +02:00 committed by GitHub
commit 2782468a1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,11 @@
name: Auto approve
on: pull_request
jobs:
auto-approve:
runs-on: ubuntu-latest
steps:
- uses: hmarr/auto-approve-action@v2.0.0
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
with:
github-token: "${{ secrets.DEPENDABOT_AUTOMERGE_TOKEN }}"