Skip to content

Commit 740ee35

Browse files
authored
chore: group only patch updates (#5174)
## 📄 Description As the system dependencies grow, it becomes less and less likely, that a grouped minor and patch update PR can be merged without issues. This change would only group patch updates into one PR and submit minor updates individually, keeping the existing exclusion rules in place. It also updates the label assigned to renovate PRs to not mess with our package labels.
1 parent d96aa43 commit 740ee35

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

renovate.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": ["config:recommended"],
4-
"labels": ["📦 {{{parentDir}}}"],
4+
"labels": ["⛓️ dependencies"],
55
"packageRules": [
66
{
77
"extends": [
@@ -14,14 +14,13 @@
1414
"groupName": "Angular"
1515
},
1616
{
17-
"matchUpdateTypes": ["minor", "patch"],
18-
"groupName": "all non-major dependencies",
19-
"groupSlug": "all-minor-patch",
17+
"matchUpdateTypes": ["patch"],
18+
"groupName": "all patch dependencies",
19+
"groupSlug": "all-patch",
2020
"matchPackageNames": [
2121
"*",
2222
"!typescript",
2323
"!bootstrap",
24-
"!sass",
2524
"!@storybook/*",
2625
"!@angular/*",
2726
"!@stencil/*"

0 commit comments

Comments
 (0)