/
/
/
1name: Auto approve Dependabot PR's
2
3on: pull_request_target
4
5jobs:
6 auto-approve:
7 runs-on: ubuntu-latest
8 permissions:
9 pull-requests: write
10 if: github.actor == 'dependabot[bot]'
11 steps:
12 - uses: hmarr/auto-approve-action@v4
13