Add CI workflows and repository templates
CI / ci (push) Successful in 2m28s

This commit is contained in:
2026-03-01 17:01:19 +01:00
parent 23a2c8c623
commit f6d3e0d681
29 changed files with 2323 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"description": "Renovate config — groups minor/patch, limits PRs, updates Docker base images.",
"schedule": ["before 6am on Monday"],
"prHourlyLimit": 5,
"prConcurrentLimit": 5,
"labels": ["dependencies"],
"packageRules": [
{
"description": "Group all minor and patch updates to reduce PR noise",
"matchUpdateTypes": ["minor", "patch"],
"groupName": "minor-and-patch",
"groupSlug": "minor-patch"
},
{
"description": "Update Docker base images (FROM ...)",
"matchDatasources": ["docker"],
"enabled": true
}
],
"docker": {
"enabled": true
}
}