summaryrefslogtreecommitdiff
path: root/.github/workflows/auto-approve.yml
blob: 1485152639058fdb3a7d716890f58b4b87b0b74d (plain)
1
2
3
4
5
6
7
8
9
10
11
---
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 }}"