Configure Renovate

This commit is contained in:
Sebastian Bergmann 2026-05-16 06:25:47 +02:00
parent 8d0e9c4c32
commit a26cf06434
No known key found for this signature in database
1 changed files with 44 additions and 0 deletions

44
renovate.json Normal file
View File

@ -0,0 +1,44 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests"
],
"baseBranchPatterns": [
"main",
"/^\\d+\\.\\d+$/"
],
"rebaseWhen": "conflicted",
"prHourlyLimit": 2,
"prConcurrentLimit": 10,
"dependencyDashboard": true,
"labels": ["type/dependencies"],
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["type/security", "type/dependencies"]
},
"packageRules": [
{
"description": "Group GitHub Actions updates per branch into one PR",
"matchManagers": ["github-actions"],
"groupName": "github-actions"
},
{
"description": "Do not update the PHP platform requirement in composer.json",
"matchManagers": ["composer"],
"matchDepNames": ["php"],
"enabled": false
},
{
"description": "Do not suggest major updates for Composer dependencies",
"matchManagers": ["composer"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Bump composer.json ranges when updating dependencies",
"matchManagers": ["composer"],
"rangeStrategy": "bump"
}
]
}