diff options
Diffstat (limited to '.github/workflows/auto-approve.yml')
| -rw-r--r-- | .github/workflows/auto-approve.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml new file mode 100644 index 0000000..1485152 --- /dev/null +++ b/.github/workflows/auto-approve.yml @@ -0,0 +1,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 }}" |
