Files
renovate-configs/common.json
Timo Behrendt 5d76d05b5d
All checks were successful
CD / Release (push) Successful in 6s
feat: add minimumReleaseAge for all deps (#34)
Reviewed-on: #34
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-02-09 19:43:56 +01:00

21 lines
753 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true,
"semanticCommits": "enabled",
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"],
"packageRules": [
{
"description": "Don't update dependencies unless they are at least 7 days old",
"minimumReleaseAge": 7,
"minimumReleaseAgeBehaviour": "timestamp-optional",
"internalChecksFilter": "strict"
},
{
"description": "Exempt local dependencies from the minimum release age",
"matchManagers": ["docker-compose", "helm-values", "github-actions", "kubernetes", "dockerfile"],
"matchPackagePatterns": ["^(https:\\/\\/)?gitea\\.t000-n\\.de\/"],
"minimumReleaseAge": 0
}
]
}