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 <noreply@anthropic.com>
This commit is contained in:
Romain Lespinasse
2026-08-24 20:45:46 +02:00
parent ef93b2ea4b
commit 3117857fe9
2 changed files with 40 additions and 3 deletions

View File

@@ -4,20 +4,32 @@ updates:
directory: '/.github/'
schedule:
interval: 'weekly'
cooldown:
default-days: 5
commit-message:
prefix: 'build'
include: 'scope'
groups:
dependencies:
patterns:
- '*'
labels: []
update-types:
- 'minor'
- 'patch'
- package-ecosystem: 'github-actions'
directory: '/'
commit-message:
prefix: 'feat: '
prefix: 'build'
include: 'scope'
schedule:
interval: 'weekly'
cooldown:
default-days: 5
groups:
dependencies:
patterns:
- 'rlespinasse/slugify-value'
- 'rlespinasse/shortify-git-revision'
labels: []
update-types:
- 'minor'
- 'patch'

View File

@@ -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 }}