-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
36 lines (36 loc) · 1.32 KB
/
renovate.json
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
29
30
31
32
33
34
35
36
{
"baseBranches": ["main"],
"configWarningReuseIssue": false,
"dependencyDashboard": true,
"dependencyDashboardHeader": "- [ ] Sync upstream versions with updated dependencies.",
"dependencyDashboardTitle": "Renovate: Upgrade Package Dependencies",
"draftPR": false,
"enabledManagers": ["regex"],
"labels": ["renovate"],
"commitMessagePrefix": "",
"packageRules": [
{
"matchDatasources": ["git-tags"]
}
],
"regexManagers": [
{
"fileMatch": ["^2-Orchestration/bases/bigbang/kustomization\\.yaml$"],
"matchStrings": [
".+?ref=+(?<currentValue>.+)"
],
"depNameTemplate": "https://repo1.dso.mil/big-bang/bigbang.git",
"datasourceTemplate": "git-tags",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$"
},
{
"fileMatch": ["^2-Orchestration/clusters/production/bigbang/configmap\\.yaml$"],
"matchStrings": [
"git:\\s+repo:\\s+(?<depName>.+)\\s+tag:\\s+\"(?<currentValue>.+)\""
],
"datasourceTemplate": "git-tags",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)-bb\\.(?<build>\\d+)$"
}
],
"separateMajorMinor": false
}