autoApproveDependabot.yml 398 B

12345678910111213
  1. name: Auto approve
  2. on:
  3. pull_request_target:
  4. branches: [ master, stable-* ]
  5. jobs:
  6. auto-approve:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: hmarr/auto-approve-action@v2.4.0
  10. if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
  11. with:
  12. github-token: "${{ secrets.GITHUB_TOKEN }}"