Compare commits

...

4 Commits

Author SHA1 Message Date
cd91321c5b feat: chage minimumReleaseAgeBehaviour to strict (#36)
All checks were successful
CD / Release (push) Successful in 6s
Reviewed-on: #36
Co-authored-by: t.behrendt <t.behrendt@t00n.de>
Co-committed-by: t.behrendt <t.behrendt@t00n.de>
2026-02-10 08:25:57 +01:00
99a56f3e9b fix: minimum release age (#35)
All checks were successful
CD / Release (push) Successful in 6s
Reviewed-on: #35
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-02-09 19:53:01 +01:00
5d76d05b5d feat: add minimumReleaseAge for all deps (#34)
All checks were successful
CD / Release (push) Successful in 6s
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
950bdb12f4 fix: match managers in ignore of cooldown for local deps
All checks were successful
CD / Release (push) Successful in 6s
Reviewed-on: #33
Reviewed-by: branch-buddy <branch-buddy@t00n.de>
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-02-08 20:37:01 +01:00

View File

@@ -5,6 +5,14 @@
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"],
"packageRules": [
{
"description": "Don't update dependencies unless they are at least 7 days old",
"minimumReleaseAge": "7 days",
"minimumReleaseAgeBehaviour": "timestamp-required",
"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": null
}