mirror of
https://github.com/astral-sh/uv
synced 2026-01-25 07:20:10 -05:00
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"dependencyDashboard": true,
|
|
"suppressNotifications": ["prEditedNotification"],
|
|
"extends": ["config:recommended"],
|
|
"labels": ["internal"],
|
|
"schedule": ["before 4am on Monday"],
|
|
"separateMajorMinor": false,
|
|
"enabledManagers": [
|
|
"github-actions",
|
|
"pre-commit",
|
|
"cargo",
|
|
],
|
|
"cargo": {
|
|
// See https://docs.renovatebot.com/configuration-options/#rangestrategy
|
|
"rangeStrategy": "update-lockfile",
|
|
"fileMatch": [
|
|
"^crates/.*Cargo\\.toml$",
|
|
],
|
|
},
|
|
"pre-commit": {
|
|
"enabled": true,
|
|
},
|
|
"packageRules": [
|
|
{
|
|
// Group upload/download artifact updates, the versions are dependent
|
|
"groupName": "Artifact GitHub Actions dependencies",
|
|
"matchManagers": ["github-actions"],
|
|
"matchPackagePatterns": ["actions/.*-artifact"],
|
|
"description": "Weekly update of artifact-related GitHub Actions dependencies",
|
|
},
|
|
{
|
|
"groupName": "pre-commit dependencies",
|
|
"matchManagers": ["pre-commit"],
|
|
"description": "Weekly update of pre-commit dependencies",
|
|
},
|
|
],
|
|
"vulnerabilityAlerts": {
|
|
"commitMessageSuffix": "",
|
|
"labels": ["internal", "security"],
|
|
},
|
|
}
|