diff --git a/.github/workflows/auto-dependabot.yaml b/.github/workflows/auto-dependabot.yaml new file mode 100644 index 00000000..ce83e4f4 --- /dev/null +++ b/.github/workflows/auto-dependabot.yaml @@ -0,0 +1,18 @@ +name: Dependabot Auto Manage +on: pull_request + +permissions: + contents: write + pull-requests: write + +jobs: + dependabot: + runs-on: ubuntu-latest + if: github.actor == 'dependabot[bot]' + steps: + - uses: ad/dependabot-auto-approve@v1 + with: + dependency-type: 'all' + auto-merge: 'true' + merge-method: 'merge' + add-label: 'auto-merged'