summaryrefslogtreecommitdiffstats
path: root/.github/workflows/dependabot-approve.yml
blob: cc5e6d17c252032c59f9d1d562a2ff122efaa99d (plain)
1
2
3
4
5
6
7
8
9
10
11
name: Dependabot 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 }}"