console/renovate.json
Kamil Kisiela ee5c2a16f3
Remove pnpm from renovate.json
Let's assume Renovate is smart enough to detect correct version. I have big hopes.
2023-10-02 10:58:57 +02:00

71 lines
1.9 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>the-guild-org/shared-config:renovate", ":preserveSemverRanges"],
"prConcurrentLimit": 10,
"packageRules": [
{
"matchPackageNames": ["slonik", "slonik-utilities"],
"enabled": false
},
{
"groupName": "graphql-armor",
"matchPackagePrefixes": ["@escape.tech/graphql-armor-"]
},
{
"groupName": "Yoga/Envelop",
"matchPackagePrefixes": ["@envelop/", "graphql-yoga", "@graphql-yoga/"]
},
{
"groupName": "radix",
"matchPackagePrefixes": ["@radix/", "@radix-ui"],
"recreateClosed": false
},
{
"groupName": "stripe",
"matchPackagePrefixes": ["@stripe/", "stripe"]
},
{
"groupName": "urql",
"matchPackagePrefixes": ["@urql/", "urql"],
"recreateClosed": false
},
{
"groupName": "sentry",
"matchPackagePrefixes": ["@sentry/", "sentry"]
},
{
"groupName": "trpc",
"matchPackagePrefixes": ["@trpc/", "trpc"]
},
{
"groupName": "supertokens",
"matchPackagePrefixes": ["supertokens"]
},
{
"groupName": "apollo-router",
"matchSourceUrls": ["(^|/)Cargo\\.toml$"],
"packageFile": "Cargo.toml",
"rangeStrategy": "pin",
"prPriority": 7
}
],
"dockerfile": {
"enabled": true,
"fileMatch": [".*?\\.[dD]ockerfile"]
},
"regexManagers": [
{
"fileMatch": ["deployment/.*?\\.ts$"],
"matchStrings": ["image: (?:'|\")(?<depName>.*?):(?<currentValue>.*?)(?:'|\")"],
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
},
{
"fileMatch": ["deployment/.*?\\.ts$"],
"matchStrings": [
"helmChart\\((?:'|\")(?<registryUrl>.*?)(?:'|\"), (?:'|\")(?<depName>.*?)(?:'|\"), (?:'|\")(?<currentValue>.*?)(?:'|\")\\)"
],
"datasourceTemplate": "helm"
}
]
}