nix-config/renovate.json

26 lines
575 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices"],
"prHourlyLimit": 0,
"packageRules": [
{
"matchPackageNames": ["/netbirdio/"],
"groupName": "netbird"
}
],
"nix": {
"enabled": true
},
"customManagers": [
{
"customType": "regex",
"datasourceTemplate": "docker",
"fileMatch": [
".+\\.nix$"
],
"matchStrings": [
"\\s+image\\s+=\\s+\"(?<depName>.*?):(?<currentValue>.*?)(@(?<currentDigest>sha256:[a-z0-9]{64}))?\""
]
}
]
}