Skip to content
Open
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
12 changes: 12 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
"extends": [
"github>conforma/.github//config/renovate/renovate.json"
],
"packageRules": [
{

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[low] logic-error

The org-level Renovate config excludes golang/go from the 'docker images' group (via matchPackageNames: ["!golang/go"]), but the new repo-level 'go version' group does not include golang/go in its matchDepNames. If Renovate ever identifies a dependency with that name, it would be excluded from 'docker images' but not captured by 'go version', leaving it ungrouped. No file in this repo currently uses golang/go as a dependency name, so this is a theoretical gap rather than an active defect.

Suggested fix: Consider adding "golang/go" to the matchDepNames array for completeness and symmetry with the org-level exclusion list.

"description": "Group Go version updates across all files (Dockerfiles, go.mod, .tool-versions)",
"matchDepNames": [
"go",
"golang",
"docker.io/library/golang",
"registry.access.redhat.com/ubi9/go-toolset"
],
"groupName": "go version"
}
],
"customManagers": [
{
"customType": "regex",
Expand Down
Loading