-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
44 lines (44 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
40
41
42
43
44
{
"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": "jenkins Support Dependencies",
"labels": ["support-deps"],
"commitMessageTopic": "support-deps",
"packagePatterns": ["*"],
"excludePackagePatterns": ["jenkinsci/.*-plugin"]
},
{
"groupName": "jenkins Package Dependencies",
"labels": ["package-deps"],
"commitMessageTopic": "package-deps",
"matchDatasources": ["docker", "helm", "git-tags"]
},
{
"groupName": "jenkins Plugin Dependencies",
"labels": ["plugin-deps"],
"commitMessageTopic": "plugin-deps",
"packagePatterns": ["jenkinsci/.*-plugin"],
"versioning": "loose"
}
],
"regexManagers": [
{
"fileMatch": ["^values/common\\.ya?ml$"],
"matchStrings": [
"-\\s(?<depName>[aA0-zZ9\\-]*):(?<currentValue>.*)"
],
"versioningTemplate": "maven",
"depNameTemplate": "jenkinsci/{{{depName}}}-plugin",
"datasourceTemplate": "github-tags"
}
]
}