Skip to content

Commit 6fe46e9

Browse files
committed
feat: simplify renovate config
Disable regular updates, because they did not work as expected, only security updates are kept. Removed configuration for go version, since it did not work as we need. Removed grouping of the dependency PRs, since it complicated the bumping of the dependencies Signed-off-by: Karel Simon <ksimon@redhat.com>
1 parent f956d4c commit 6fe46e9

File tree

1 file changed

+4
-26
lines changed

1 file changed

+4
-26
lines changed

renovate.json

Lines changed: 4 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
"release-0.34"
1010
],
1111
"prConcurrentLimit": 3,
12-
"groupName": "all dependencies",
13-
"groupSlug": "all",
1412
"lockFileMaintenance": {
1513
"enabled": false
1614
},
@@ -25,41 +23,21 @@
2523
"hack/**",
2624
"manifests/**"
2725
],
26+
"postUpdateOptions": ["gomodTidy"],
2827
"packageRules": [
2928
{
30-
"groupName": "all dependencies on main",
31-
"matchBaseBranches": [
32-
"main"
33-
],
34-
"matchPackagePatterns": [
35-
"*"
36-
]
37-
},
38-
{
39-
"groupName": "only security dependencies on stable",
29+
"groupName": "all dependencies",
30+
"groupSlug": "all",
4031
"enabled": false,
41-
"matchBaseBranches": [
42-
"release-0.34"
43-
],
4432
"matchPackagePatterns": [
4533
"*"
4634
]
47-
},
48-
{
49-
"matchPackageNames": [
50-
"golang",
51-
"go"
52-
],
53-
"allowedVersions": "<=1.22",
54-
"matchBaseBranches": [
55-
"release-0.34"
56-
]
5735
}
5836
],
5937
"vulnerabilityAlerts": {
6038
"enabled": true
6139
},
6240
"osvVulnerabilityAlerts": true,
6341
"assigneesFromCodeOwners": true,
64-
"separateMajorMinor": false
42+
"separateMajorMinor": true
6543
}

0 commit comments

Comments
 (0)