Skip to content

Commit

Permalink
Schedule renovage PRs once a week (#7524)
Browse files Browse the repository at this point in the history
This adds a `after 1 a.m. Monday` schedule to reduce the number of renovate PRs.

Also do some cleaning:
- Remove unnecessary configuration (no more vendor/ directories for a long time)
- Simplify package rule to group k8s repositories (using matchpackagepatterns)
- Stop to discard major/minor k8s.io updates: the updates were pulled by other updates (e.g.: k8s v0.29.0 via fix(deps): update module sigs.k8s.io/controller-tools to v0.14.0 #7461)
  • Loading branch information
thbkrkr authored Feb 5, 2024
1 parent 91d6639 commit 9a73508
Showing 1 changed file with 5 additions and 29 deletions.
34 changes: 5 additions & 29 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,13 @@
"config:base"
],
"labels": [">renovate"],
"schedule": [
"after 1am on monday"
],
"packageRules": [
{
"packageNames": [
"k8s.io/apimachinery",
"k8s.io/client-go",
"k8s.io/api",
"k8s.io/cli-runtime",
"k8s.io/apiextensions-apiserver",
"k8s.io/kubectl"
],
"updateTypes": [
"major",
"minor",
"digest"
],
"enabled": false
},
{
"packageNames": [
"k8s.io/apimachinery",
"k8s.io/client-go",
"k8s.io/api",
"k8s.io/cli-runtime",
"k8s.io/apiextensions-apiserver",
"k8s.io/kubectl"
],
"updateTypes": [
"patch"
"matchPackagePatterns": [
"k8s.io"
],
"groupName": "k8s"
},
Expand All @@ -48,8 +27,5 @@
],
"enabled": false
}
],
"ignorePaths": [
"**/vendor/**"
]
}

0 comments on commit 9a73508

Please sign in to comment.