-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathrenovate.json
More file actions
23 lines (23 loc) · 863 Bytes
/
Copy pathrenovate.json
File metadata and controls
23 lines (23 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"extends": ["@nuxtjs"],
"ignoreDeps": ["@nuxtjs/storybook"],
"packageRules": [
{
"description": "Lint/dev tooling patch+minor bumps: low risk, nothing shipped to production - safe to auto-merge once CI passes.",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"automerge": true,
"platformAutomerge": true
},
{
"description": "Drupal/PHP ecosystem: test coverage here is boot+JSON:API-responds only, nothing verifying deeper Drupal behavior - always manual review, regardless of update type.",
"matchManagers": ["composer"],
"automerge": false
},
{
"description": "Major version bumps anywhere: always manual, no coverage level justifies skipping review on a breaking change.",
"matchUpdateTypes": ["major"],
"automerge": false
}
]
}