Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions modules/repository-base/base-dependabot/.github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
],
executionMode: 'branch',
},
// packageRules uses globs for matchPackageNames. Some packages have a separate major version i.e. /v on them which is when we would need package**/**.
packageRules: [
{
groupName: 'Misc Go deps',
Expand All @@ -45,9 +46,9 @@
'gomod',
],
matchPackageNames: [
'github.com/onsi/ginkgo**/**',
'github.com/onsi/gomega**/**',
'github.com/stretchr/testify**/**',
'github.com/onsi/ginkgo/**',
'github.com/onsi/gomega',
'github.com/stretchr/testify',
],
},
{
Expand All @@ -56,12 +57,12 @@
'gomod',
],
matchPackageNames: [
'github.com/akamai**/**',
'github.com/aws**/**',
'github.com/Azure**/**',
'github.com/AzureAD**/**',
'github.com/cloudflare**/**',
'github.com/digitalocean**/**',
'github.com/akamai/**',
'github.com/aws/**',
'github.com/Azure/**',
'github.com/AzureAD/**',
'github.com/cloudflare/**',
'github.com/digitalocean/**',
'google.golang.org/api',
],
},
Expand All @@ -71,8 +72,8 @@
'gomod',
],
matchPackageNames: [
'sigs.k8s.io**/**',
'k8s.io**/**',
'sigs.k8s.io/**',
'k8s.io/**',
],
},
{
Expand All @@ -81,7 +82,7 @@
'gomod',
],
matchPackageNames: [
'k8s.io**/**',
'k8s.io/**',
],
matchUpdateTypes: [
'patch',
Expand All @@ -96,7 +97,7 @@
'gomod',
],
matchPackageNames: [
'golang.org/x**/*',
'golang.org/x/**',
],
addLabels: [
'skip-review', // Adding label to allow PRs to automerge
Expand Down
Loading