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

renovate: enable automerge for pin/pinDigest and patch #1587

Merged
merged 2 commits into from
Oct 16, 2023
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
22 changes: 21 additions & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -335,7 +355,7 @@
],
// Those regexes manage version strings in variousfiles, similar to the
// examples shown here: https://docs.renovatebot.com/modules/manager/regex/#advanced-capture
"regexManagers": [
"customManagers": [
{
"customType": "regex",
"fileMatch": [
Expand Down