Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update aws-sdk-go-v2 monorepo (main) #666

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
renovate: add auto merge for certain dependencies
If we enable auto merge for trusted dependencies we will be able to
reduce the load on reviewers by skipping the reviews of certain
trusted libraries.

Signed-off-by: André Martins <andre@cilium.io>
  • Loading branch information
aanm committed Jun 19, 2024
commit b34c4a5a2f4089371ca6518006cfce75e1d6e788
31 changes: 31 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,37 @@
"^make manifests$"
],
"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
"quay.io/lvh-images/", // LVH images
"quay.io/cilium/", // LVH images
"github.com/cilium/", // Any Cilium dependency
"renovatebot/renovate", // Renovate bot
],
"matchUpdateTypes": [
"patch",
"pin",
"pinDigest",
"digest",
"lockFileMaintenance",
"rollback",
"bump",
"replacement"
],
"automerge": true,
"automergeType": "pr-comment",
"automergeComment": "/test"
},
{
// Try to group all updates for all dependencies in a single PR. More
// specific packageRules are followed by this one.
Expand Down