|
28 | 28 | // Go 1.24 -> 1.25 introduces new language features and should be treated carefully |
29 | 29 | "description": "Treat Go minor updates as major (1.x bumps)", |
30 | 30 | "matchPackageNames": [ "golang/go", "docker.io/library/golang", "registry.access.redhat.com/ubi9/go-toolset" ], // ASDF/Docker sources |
31 | | - "matchDepNames": [ "go" ], // go.mod directive |
| 31 | + "matchDepNames": [ "go", "golang", "docker.io/library/golang", "registry.access.redhat.com/ubi9/go-toolset" ], // go.mod directive |
32 | 32 | "matchUpdateTypes": [ "minor" ], |
33 | 33 | "commitMessagePrefix": "🚨", |
34 | 34 | "labels": [ "renovate", "major" ], |
|
45 | 45 | // Go Dependencies: Group module updates |
46 | 46 | "description": "Group Go module dependency updates (excluding the go directive which is handled separately)", |
47 | 47 | "matchManagers": [ "gomod" ], |
48 | | - "matchDepNames": [ "!go" ], // Exclude go directive - it goes to "go version" group |
| 48 | + "matchDepNames": [ "!go", "!golang", "!docker.io/library/golang", "!registry.access.redhat.com/ubi9/go-toolset" ], // Exclude go directive - it goes to "go version" group |
49 | 49 | "groupName": "go modules" |
50 | 50 | }, |
51 | 51 | { |
|
63 | 63 | "description": "Group Go version updates across ASDF (.tool-versions), go.mod directive, and Dockerfile golang images", |
64 | 64 | "groupName": "go version", |
65 | 65 | "matchPackageNames": [ "golang/go", "docker.io/library/golang", "registry.access.redhat.com/ubi9/go-toolset" ], // ASDF + Docker golang |
66 | | - "matchDepNames": [ "go" ], // go.mod directive |
| 66 | + "matchDepNames": [ "go", "golang", "docker.io/library/golang", "registry.access.redhat.com/ubi9/go-toolset" ], // go.mod directive |
67 | 67 | "matchDatasources": [ "docker", "github-tags", "golang-version" ], |
68 | 68 | "commitMessageTopic": "golang version", // "Update golang version to vX.Y.Z" |
69 | 69 | "branchTopic": "go-version" // Single branch: renovate/go-version |
|
0 commit comments