ci(dependabot): widen grouping to cut PR volume

Collapse minor+patch bumps into one PR per ecosystem (npm/cargo) with majors in
their own grouped PR; add a github-actions group so action bumps batch instead of
one PR each. Replaces the many narrow per-family groups.
This commit is contained in:
Offending Commit
2026-06-02 15:38:23 -05:00
parent 85b56ca0f8
commit 765c618a76

View File

@@ -1,5 +1,9 @@
# Dependabot configuration # Dependabot configuration
# Docs: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file # Docs: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
#
# Grouping policy: collapse all minor+patch bumps into ONE PR per ecosystem so
# the review queue stays small; majors get their own grouped PR per ecosystem so
# breaking changes still get individual scrutiny.
version: 2 version: 2
updates: updates:
@@ -19,47 +23,17 @@ updates:
- "dependencies" - "dependencies"
- "javascript" - "javascript"
groups: groups:
# Keep TanStack libs in lockstep — they release as a family npm-minor-patch:
tanstack:
patterns: patterns:
- "@tanstack/*" - "*"
# Tauri JS bindings update-types:
tauri: - "minor"
- "patch"
npm-major:
patterns: patterns:
- "@tauri-apps/*" - "*"
# Test stack update-types:
testing: - "major"
patterns:
- "vitest"
- "@vitest/*"
- "@testing-library/*"
- "jsdom"
- "@playwright/*"
# Build/lint tooling
tooling:
patterns:
- "@biomejs/*"
- "turbo"
- "vite"
- "@vitejs/*"
- "typescript"
# React core
react:
patterns:
- "react"
- "react-dom"
- "@types/react"
- "@types/react-dom"
# Semantic-release ecosystem
semantic-release:
patterns:
- "semantic-release"
- "@semantic-release/*"
# Commitlint + husky
commit-tooling:
patterns:
- "@commitlint/*"
- "husky"
# ─── Rust / Cargo (Tauri desktop shell) ─────────────────────────────────── # ─── Rust / Cargo (Tauri desktop shell) ───────────────────────────────────
- package-ecosystem: "cargo" - package-ecosystem: "cargo"
@@ -77,16 +51,17 @@ updates:
- "dependencies" - "dependencies"
- "rust" - "rust"
groups: groups:
tauri-core: cargo-minor-patch:
patterns: patterns:
- "tauri" - "*"
- "tauri-*" update-types:
tokio: - "minor"
- "patch"
cargo-major:
patterns: patterns:
- "tokio" - "*"
- "tokio-*" update-types:
- "futures" - "major"
- "futures-*"
# ─── GitHub Actions workflow pins ───────────────────────────────────────── # ─── GitHub Actions workflow pins ─────────────────────────────────────────
- package-ecosystem: "github-actions" - package-ecosystem: "github-actions"
@@ -103,3 +78,7 @@ updates:
labels: labels:
- "dependencies" - "dependencies"
- "github-actions" - "github-actions"
groups:
github-actions:
patterns:
- "*"