From dbbcc81e85c2c74883745a6b35998813eb58241d Mon Sep 17 00:00:00 2001 From: "Mathias L. Baumann" Date: Mon, 3 Nov 2025 10:24:04 +0100 Subject: [PATCH] Add Dependabot auto-merge workflow Signed-off-by: Mathias L. Baumann --- .github/workflows/auto-dependabot.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/auto-dependabot.yaml 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