Prevent missing regex_patterns (#15)

This commit is contained in:
Johan 2026-01-10 17:51:12 +02:00 committed by GitHub
parent 599fd6209f
commit 783609d2e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
195 changed files with 1617 additions and 562 deletions

View file

@ -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
}
}