Files
renovate-configs/common.json
Timo Behrendt e8e303565a
All checks were successful
CD / Release (push) Successful in 6s
fix: fix internal package name regex and field and remove package groups (#38)
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

20 lines
656 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 days",
"minimumReleaseAgeBehaviour": "timestamp-required",
"internalChecksFilter": "strict"
},
{
"description": "Exempt local dependencies from the minimum release age",
"matchPackageNames": ["/^(https:\\/\\/)?gitea\\.t000-n\\.de/"],
"minimumReleaseAge": null
}
]
}