mirror of https://github.com/astral-sh/uv
Fix pubgrub grouping in renovate (#16092)
`packageName` was wrong, we need `depName`
This commit is contained in:
parent
c2100d11f3
commit
ee697a2178
|
|
@ -16,7 +16,7 @@
|
||||||
cargo: {
|
cargo: {
|
||||||
// See https://docs.renovatebot.com/configuration-options/#rangestrategy
|
// See https://docs.renovatebot.com/configuration-options/#rangestrategy
|
||||||
rangeStrategy: "update-lockfile",
|
rangeStrategy: "update-lockfile",
|
||||||
managerFilePatterns: ["/^crates/.*Cargo\\.toml$/"],
|
managerFilePatterns: ["/^Cargo\\.toml$/", "/^crates/.*Cargo\\.toml$/"],
|
||||||
},
|
},
|
||||||
"pre-commit": {
|
"pre-commit": {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
|
|
@ -89,7 +89,7 @@
|
||||||
{
|
{
|
||||||
groupName: "pubgrub",
|
groupName: "pubgrub",
|
||||||
matchManagers: ["cargo"],
|
matchManagers: ["cargo"],
|
||||||
matchPackageNames: ["pubgrub", "version-ranges"],
|
matchDepName: ["pubgrub", "version-ranges"],
|
||||||
description: "version-ranges and pubgrub are in the same Git repository",
|
description: "version-ranges and pubgrub are in the same Git repository",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue