Compare commits
No commits in common. "2bd973910393f841f609c649488d8922c4155852" and "db998ac3351ed35394699ad731e0f9c83269019a" have entirely different histories.
2bd9739103
...
db998ac335
1 changed files with 23 additions and 16 deletions
|
@ -1,21 +1,28 @@
|
||||||
{
|
{
|
||||||
$schema: "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
extends: ["config:recommended", "docker:pinDigests"],
|
"extends": ["config:base", "docker:pinDigests"],
|
||||||
nix: {
|
"nix": {
|
||||||
enabled: true,
|
"enabled": true
|
||||||
},
|
},
|
||||||
ignorePaths: ["**/*.sops.*", "**/.archive/**", "**/resources/**"],
|
"ignorePaths": ["**/*.sops.*", "**/.archive/**", "**/resources/**"],
|
||||||
customManagers: [
|
// "lockFileMaintenance": {
|
||||||
|
// "enabled": true,
|
||||||
|
// "extends": [
|
||||||
|
// "schedule:daily"
|
||||||
|
// ]
|
||||||
|
// },
|
||||||
|
"customManagers": [
|
||||||
{
|
{
|
||||||
customType: "regex",
|
"customType": "regex",
|
||||||
description: "Process various dependencies in nix files",
|
"description": "Process various dependencies in nix files",
|
||||||
fileMatch: ["\\.nix$"],
|
"fileMatch": ["\\.nix$"],
|
||||||
matchStrings: [
|
"matchStrings": [
|
||||||
'(?m:^[ \\t]*?# ?renovate: depName=(?<depName>\\S+)( datasource=(?<datasource>\\S+))?( versioning=(?<versioning>\\S+))?( extractVersion=(?<extractVersion>\\S+))?\\n[ \\t ]*?\\S+ = "?(?<currentValue>[^" ]+?)";?$)',
|
// Newline
|
||||||
],
|
"(?m:^[ \\t]*?# ?renovate: depName=(?<depName>\\S+)( datasource=(?<datasource>\\S+))?( versioning=(?<versioning>\\S+))?( extractVersion=(?<extractVersion>\\S+))?\\n[ \\t ]*?\\S+ = \"?(?<currentValue>[^\" ]+?)\";?$)"
|
||||||
datasourceTemplate: "{{#if datasource}}{{{datasource}}}{{else}}github-releases{{/if}}",
|
|
||||||
versioningTemplate: "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}",
|
|
||||||
extractVersionTemplate: "{{#if extractVersion}}{{{extractVersion}}}{{else}}^(?<version>.*)${{/if}}",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
|
"datasourceTemplate": "{{#if datasource}}{{{datasource}}}{{else}}github-releases{{/if}}",
|
||||||
|
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}",
|
||||||
|
"extractVersionTemplate": "{{#if extractVersion}}{{{extractVersion}}}{{else}}^(?<version>.*)${{/if}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue