Compare commits

..

2 Commits

Author SHA1 Message Date
e8e303565a fix: fix internal package name regex and field and remove package groups (#38)
All checks were successful
CD / Release (push) Successful in 6s
Dropping the "matchManagers" as we actually want to match anything, regardless of manager.
Also fixing the regex, wasn't valid before.
Also renaming the "matchPackagePatterns" to "matchPackageNames" as the previous value isn't supported anymore..

Since it's JSON, renovate needs the regex to be quoted. See example:

```json
{
  "packageRules": [
    {
      "matchDatasources": ["npm"],
      "matchPackageNames": ["/^angular/"],
      "groupName": "Angular"
    }
  ]
}
```

Reviewed-on: #38
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-14 12:57:41 +01:00
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

View File

@@ -7,13 +7,12 @@
{ {
"description": "Don't update dependencies unless they are at least 7 days old", "description": "Don't update dependencies unless they are at least 7 days old",
"minimumReleaseAge": "7 days", "minimumReleaseAge": "7 days",
"minimumReleaseAgeBehaviour": "timestamp-optional", "minimumReleaseAgeBehaviour": "timestamp-required",
"internalChecksFilter": "strict" "internalChecksFilter": "strict"
}, },
{ {
"description": "Exempt local dependencies from the minimum release age", "description": "Exempt local dependencies from the minimum release age",
"matchManagers": ["docker-compose", "helm-values", "github-actions", "kubernetes", "dockerfile"], "matchPackageNames": ["/^(https:\\/\\/)?gitea\\.t000-n\\.de/"],
"matchPackagePatterns": ["^(https:\\/\\/)?gitea\\.t000-n\\.de\/"],
"minimumReleaseAge": null "minimumReleaseAge": null
} }
] ]