From d21d9108d14741a766c4c94f89d8f7f1d6f2cbf0 Mon Sep 17 00:00:00 2001 From: Romain Lespinasse Date: Mon, 24 Aug 2026 22:35:13 +0200 Subject: [PATCH] build: standardize dependabot config and enable auto-merge for minor/patch updates Groups minor/patch updates for auto-merge once CI passes, keeps majors as individual PRs for manual review, adds a cooldown window, standardizes the commit-message prefix to build(deps), and restores default dependency labeling. Co-Authored-By: Claude Sonnet 5 --- .github/dependabot.yml | 9 +++++++- .github/workflows/dependabot-auto-merge.yml | 25 +++++++++++++++++++++ 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/dependabot-auto-merge.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 953e6de..a42ec63 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,8 +4,15 @@ updates: directory: '/' schedule: interval: 'weekly' + cooldown: + default-days: 5 + commit-message: + prefix: 'build' + include: 'scope' groups: dependencies: patterns: - '*' - labels: [] + update-types: + - 'minor' + - 'patch' diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml new file mode 100644 index 0000000..d1e5be5 --- /dev/null +++ b/.github/workflows/dependabot-auto-merge.yml @@ -0,0 +1,25 @@ +name: Dependabot auto-merge + +on: pull_request + +permissions: + contents: write + pull-requests: write + +jobs: + auto-merge: + if: github.actor == 'dependabot[bot]' + runs-on: ubuntu-latest + steps: + - name: Dependabot metadata + id: metadata + uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3.1.0 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + + - name: Enable auto-merge for minor/patch updates + if: steps.metadata.outputs.update-type != 'version-update:semver-major' + run: gh pr merge --auto --squash "$PR_URL" + env: + PR_URL: ${{ github.event.pull_request.html_url }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}