From 283ccf43c18036a8138ed0bee2f3b349bf36e219 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 2 Feb 2026 14:27:47 +0100 Subject: [PATCH] Add the auto-dependabot GitHub Action workflow This workflow was added by the repo-config migration script but it was not added to git when committing the changes. Signed-off-by: Leandro Lucarella --- .github/workflows/auto-dependabot.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..15ec7e4 --- /dev/null +++ b/.github/workflows/auto-dependabot.yaml @@ -0,0 +1,22 @@ +name: Auto-merge Dependabot PR + +on: + pull_request: + +permissions: + contents: write + pull-requests: write + +jobs: + auto-merge: + if: github.actor == 'dependabot[bot]' + runs-on: ubuntu-latest + steps: + - name: Auto-merge Dependabot PR + uses: frequenz-floss/dependabot-auto-approve@3cad5f42e79296505473325ac6636be897c8b8a1 # v1.3.2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + dependency-type: 'all' + auto-merge: 'true' + merge-method: 'merge' + add-label: 'tool:auto-merged'