forked from AndreasHeine/SampleServer-node-opcua
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(config): migrate renovate config (AndreasHeine#908)
* chore(config): migrate config .github/renovate.json * refactor: linting Signed-off-by: Goetz Goerisch <[email protected]> --------- Signed-off-by: Goetz Goerisch <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Goetz Goerisch <[email protected]>
- Loading branch information
1 parent
a6cabc7
commit cb7481d
Showing
1 changed file
with
27 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,30 @@ | ||
|
||
{ | ||
"extends": [ | ||
"config:base" | ||
"extends": ["config:recommended"], | ||
"labels": ["dependencies"], | ||
"packageRules": [ | ||
{ | ||
"matchDatasources": ["docker"], | ||
"matchUpdateTypes": ["major"], | ||
"enabled": true, | ||
"pinDigests": true | ||
}, | ||
{ | ||
"labels": ["node-opcua"], | ||
"groupName": "node-opcua", | ||
"matchPackageNames": ["/node-opcua/"] | ||
} | ||
], | ||
"labels": ["dependencies"], | ||
"packageRules": [ | ||
{ | ||
"matchDatasources": ["docker"], | ||
"matchUpdateTypes": ["major"], | ||
"enabled": true, | ||
"pinDigests": true | ||
}, | ||
{ | ||
"matchPackagePatterns": ["node-opcua"], | ||
"labels": ["node-opcua"], | ||
"groupName": "node-opcua" | ||
} | ||
], | ||
"regexManagers": [ | ||
{ | ||
"fileMatch": ["^(LDS.)?Dockerfile$"], | ||
"matchStringsStrategy": "any", | ||
"matchStrings": [ | ||
"\\s\\s(?<package>[a-z0-9][a-z0-9-_]+)=(?<currentValue>[a-z0-9-_.]+)\\s+" | ||
], | ||
"versioningTemplate": "loose", | ||
"datasourceTemplate": "repology", | ||
"depNameTemplate": "alpine_3_17/{{package}}" | ||
} | ||
] | ||
"customManagers": [ | ||
{ | ||
"customType": "regex", | ||
"fileMatch": ["^(LDS.)?Dockerfile$"], | ||
"matchStringsStrategy": "any", | ||
"matchStrings": [ | ||
"\\s\\s(?<package>[a-z0-9][a-z0-9-_]+)=(?<currentValue>[a-z0-9-_.]+)\\s+" | ||
], | ||
"versioningTemplate": "loose", | ||
"datasourceTemplate": "repology", | ||
"depNameTemplate": "alpine_3_17/{{package}}" | ||
} | ||
] | ||
} |