Prevent missing regex_patterns (#15)
This commit is contained in:
parent
599fd6209f
commit
783609d2e3
195 changed files with 1617 additions and 562 deletions
|
|
@ -1,11 +1,39 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:recommended"
|
||||
"config:best-practices",
|
||||
"schedule:weekly"
|
||||
],
|
||||
"pep723": {
|
||||
"managerFilePatterns": [
|
||||
"/scripts/generate\\.py/"
|
||||
]
|
||||
"python": {
|
||||
"range": ">=3.13"
|
||||
},
|
||||
"packageRules": [
|
||||
{
|
||||
"description": "Auto-merge patch and minor updates for dependencies",
|
||||
"matchUpdateTypes": ["patch", "minor"],
|
||||
"automerge": true,
|
||||
"automergeType": "pr"
|
||||
},
|
||||
{
|
||||
"description": "Do not auto-merge major version updates",
|
||||
"matchUpdateTypes": ["major"],
|
||||
"automerge": false
|
||||
},
|
||||
{
|
||||
"description": "Group Python dependencies",
|
||||
"matchDatasources": ["pypi"],
|
||||
"groupName": "Python dependencies",
|
||||
"groupSlug": "python-deps"
|
||||
}
|
||||
],
|
||||
"schedule": [
|
||||
"before 3am on Monday"
|
||||
],
|
||||
"timezone": "UTC",
|
||||
"semanticCommits": true,
|
||||
"prConcurrentLimit": 5,
|
||||
"vulnerabilityAlerts": {
|
||||
"labels": ["security"],
|
||||
"automerge": true
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue