chore: add renovate bot modular configuration (#1983)

This commit is contained in:
Joe Harrison
2025-10-07 05:21:18 +01:00
committed by GitHub
parent 94a43ea480
commit 0af453ee33
8 changed files with 154 additions and 21 deletions

21
.github/renovate/groups.json5 vendored Normal file
View File

@@ -0,0 +1,21 @@
{
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
packageRules: [
// Node.js
{
matchPackageNames: ['node'],
matchManagers: ['dockerfile', 'npm'],
groupName: 'Node.js',
minimumReleaseAge: '7 days',
commitMessageTopic: 'Node.js',
},
// Database packages
{
matchPackageNames: ['pg', 'sqlite3', 'typeorm'],
groupName: 'Database',
minimumReleaseAge: '7 days',
},
],
}