-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json5
More file actions
28 lines (28 loc) · 863 Bytes
/
renovate.json5
File metadata and controls
28 lines (28 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"mergeConfidence:all-badges",
],
"ignorePaths": [],
// https://docs.renovatebot.com/modules/manager/regex/#regular-expression-capture-groups
customManagers: [
{
customType: "regex",
managerFilePatterns: ["*"],
matchStrings: [
'# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s*(?<key>[A-Za-z0-9._-]+)\\s*[:=]\\s*"?v?(?<currentValue>[0-9][^"\\s]*)"?',
],
versioningTemplate: "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}",
},
],
"argocd": {
"managerFilePatterns": [
"^applications/argocd/.+\\.yaml$"
],
"ignorePaths": [
// Private registry
"^applications/argocd/.+/sdt-.+\\.yaml$",
],
},
}