Compare commits

...

1 Commits

Author SHA1 Message Date
02d9a195c2 Migrate config .renovaterc.json5
All checks were successful
Main workflow / Build synapse (push) Successful in 28s
2025-11-11 20:01:38 +00:00

View File

@@ -1,13 +1,22 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", $schema: 'https://docs.renovatebot.com/renovate-schema.json',
"dependencyDashboard": true, dependencyDashboard: true,
"enabledManagers": ["dockerfile", "github-actions", "regex"], enabledManagers: [
"regexManagers": [ 'dockerfile',
'github-actions',
'custom.regex',
],
customManagers: [
{ {
"fileMatch": ["^Dockerfile$"], customType: 'regex',
"matchStrings": ["synapse-s3-storage-provider==(?<currentValue>.*)\\n"], fileMatch: [
"depNameTemplate": "synapse-s3-storage-provider", '^Dockerfile$',
"datasourceTemplate": "pypi", ],
matchStrings: [
'synapse-s3-storage-provider==(?<currentValue>.*)\\n',
],
depNameTemplate: 'synapse-s3-storage-provider',
datasourceTemplate: 'pypi',
}, },
], ],
} }