-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
39 lines (39 loc) · 1.23 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
37
38
39
{
"extends": [
"github>defenseunicorns/uds-common//config/renovate.json5",
":semanticCommits",
":semanticPrefixFixDepsChoreOthers",
"group:all",
"replacements:all",
"workarounds:all"
],
"schedule": ["after 7am and before 9am every weekday"],
"packageRules": [
{
"groupName": "Jira Support Dependencies",
"labels": ["support-deps"],
"commitMessageTopic": "support-deps",
"packagePatterns": ["*"]
},
{
"groupName": "Jira Package Dependencies",
"labels": ["package-deps"],
"commitMessageTopic": "package-deps",
"matchDatasources": ["docker", "helm", "git-tags"],
"excludePackagePatterns": ["bitnami/jmx-exporter", "registry1.dso.mil/ironbank/opensource/prometheus/jmx-exporter"]
},
{
"matchDatasources": ["docker"],
"matchPackageNames": ["bitnami/jmx-exporter", "registry1.dso.mil/ironbank/opensource/prometheus/jmx-exporter"],
"matchUpdateTypes": ["patch"]
}
],
"regexManagers": [
{
"fileMatch": [ "\\.*\\.ya?ml$" ],
"matchStringsStrategy": "recursive",
"matchStrings": [ "(?m)jmxExporterImageRepo: (?<depName>.*)\n jmxExporterImageTag: (?<currentValue>.*)$" ],
"datasourceTemplate": "docker"
}
]
}