diff --git a/.github/workflows/auto-dependabot.yaml b/.github/workflows/auto-dependabot.yaml new file mode 100644 index 0000000..e27ab0d --- /dev/null +++ b/.github/workflows/auto-dependabot.yaml @@ -0,0 +1,15 @@ +name: Auto-approve Dependabot PRs + +on: + pull_request: + +jobs: + auto-approve: + runs-on: ubuntu-latest + if: github.actor == 'dependabot[bot]' + steps: + - name: Auto-approve and merge Dependabot PRs + uses: frequenz-floss/dependabot-auto-approve@v1.3.0 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + merge-method: merge