From 60c4b41f8663290fedf2dc206775d280b0ad8afb Mon Sep 17 00:00:00 2001 From: Mahe Tardy Date: Thu, 12 Oct 2023 12:29:34 +0200 Subject: [PATCH] renovate: enable automerge for pin/pinDigest and patch for trusted deps Signed-off-by: Mahe Tardy --- .github/renovate.json5 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 2fe2f90dd75..5ed93146348 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -66,6 +66,26 @@ // about packageRules: To enable grouping, you configure the groupName field // to something non-null. "packageRules": [ + { + "matchPackageNames": [ + "go", // golang version directive upgrade in go.mod + ], + "matchPackagePrefixes": [ + "docker.io/library/", // official Docker images + "github.com/golang/", // Golang official org + "golang.org/x/", // Golang official experimental org + "google.golang.org/", // Google official repo for api/genproto/grpc/protobuf + "github.com/google/", // Google official github org + "k8s.io/", // Kubernetes official repo + "sigs.k8s.io/", // Kubernetes official SIG repo + ], + "matchUpdateTypes": [ + "patch", + "pin", + "pinDigest" + ], + "automerge": true + }, { "groupName": "all github action dependencies", "groupSlug": "all-github-action",