Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions renovate-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
"extends": [
"config:best-practices",
":semanticCommits",
":approveMajorUpdates",
"schedule:weekly",
":disableVulnerabilityAlerts"
],
"timezone": "UTC",
"schedule": ["* 0-4 * * 1"],
"minimumReleaseAge": "3 days",
"dependencyDashboard": true,
"dependencyDashboardTitle": "Dependency Dashboard",
Expand All @@ -17,10 +18,9 @@
"automerge": false,
"packageRules": [
{
"description": "Group non-major updates by package manager",
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "{{manager}} non-major updates",
"groupSlug": "{{manager}}-non-major"
"description": "Propose only the highest available GitHub Actions release",
"matchManagers": ["github-actions"],
"separateMajorMinor": false
},
{
"description": "Group non-major GitHub Actions updates",
Expand Down
12 changes: 12 additions & 0 deletions runbooks/dependency-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,18 @@ also reference it explicitly:
}
```

The organization preset builds on Renovate's `config:best-practices` and weekly
schedule presets. It leaves Renovate's curated monorepo and related-package
groups in place instead of grouping every dependency handled by the same
manager. Broad manager-wide groups make one unrelated failure block all other
updates and make the cause harder to isolate.

GitHub Actions are the narrow exception. Their non-major updates are grouped to
reduce workflow-only pull request volume, while major updates remain isolated
and require Dependency Dashboard approval. Renovate is configured not to open
parallel major and non-major branches for the same action: when both are
available, it proposes only the highest release.

Repository consumer configuration belongs at `.github/renovate.json`.
Renovate also recognizes `renovate.json` at the repository root, but searches
that location first and stops after the first match. Never keep both paths; a
Expand Down
Loading