From 209adc282623259146de8d052087918713bcde64 Mon Sep 17 00:00:00 2001 From: "Mathias L. Baumann" Date: Mon, 20 Oct 2025 15:27:54 +0200 Subject: [PATCH 1/2] Add Dependabot auto-merge workflow Signed-off-by: Mathias L. Baumann --- .github/workflows/auto-dependabot.yaml | 18 ++++++++++++++++++ 1 file changed, 18 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..ce83e4f --- /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' From ed47341541bebd3b065bdac600f390a60516621e Mon Sep 17 00:00:00 2001 From: "Mathias L. Baumann" Date: Mon, 3 Nov 2025 10:19:03 +0100 Subject: [PATCH 2/2] Update Dependabot auto-merge workflow Signed-off-by: Mathias L. Baumann --- .github/workflows/auto-dependabot.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-dependabot.yaml b/.github/workflows/auto-dependabot.yaml index ce83e4f..f81b03f 100644 --- a/.github/workflows/auto-dependabot.yaml +++ b/.github/workflows/auto-dependabot.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest if: github.actor == 'dependabot[bot]' steps: - - uses: ad/dependabot-auto-approve@v1 + - uses: frequenz-floss/dependabot-auto-approve@v1.3.0 with: dependency-type: 'all' auto-merge: 'true'