Added auto approve workflow

This commit is contained in:
James Mills 2020-01-26 14:07:31 +10:00
parent 35318126b7
commit 433e1b1aed
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6

12
.github/workflows/auto-approve.yml vendored Normal file

@ -0,0 +1,12 @@
name: Auto approve
on: pull_request
jobs:
build:
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.GITHUB_TOKEN }}"