Files
commands/.github/workflows/auto-approve.yml
2021-02-18 16:54:57 +02:00

14 lines
317 B
YAML

name: Auto Approve Dependabot
on:
branches: [ master ]
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.GITHUB_TOKEN }}"