-
Notifications
You must be signed in to change notification settings - Fork 5
/
renovate.json
61 lines (61 loc) · 1.95 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"enabled": true,
"timezone": "Asia/Kolkata",
"semanticCommits": "enabled",
"dependencyDashboard": true,
"dependencyDashboardTitle": "Renovate Dashboard 🤖",
"commitBody": "Signed-off-by: Pratik Balar <[email protected]>",
"suppressNotifications": ["prIgnoreNotification"],
"commitMessageTopic": "{{depName}}",
"commitMessageExtra": "to {{newVersion}}",
"commitMessageSuffix": "",
"regexManagers": [
{
"fileMatch": [
"Dockerfile",
"hack/.+\\.sh$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\n.*?_VERSION=(?<currentValue>.*)"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
],
"packageRules": [
{
"enabled": true,
"matchDatasources": ["docker", "github-releases", "pypi", "npm", "repology"],
"matchUpdateTypes": ["major", "minor", "patch"]
},
{
"matchDatasources": ["docker", "github-releases", "pypi", "npm", "repology"],
"semanticCommitScope": "deps",
"separateMinorPatch": true
},
{
"matchDatasources": ["docker", "github-releases", "pypi", "npm", "repology"],
"matchUpdateTypes": ["major"],
"commitMessagePrefix": "feat(deps): ",
"labels": ["dep/major"]
},
{
"matchDatasources": ["docker", "github-releases", "pypi", "npm", "repology"],
"matchUpdateTypes": ["minor"],
"semanticCommitType": "feat",
"labels": ["dep/minor"]
},
{
"matchDatasources": ["docker", "github-releases", "pypi", "npm", "repology"],
"matchUpdateTypes": ["patch"],
"semanticCommitType": "fix",
"labels": ["dep/patch"]
},
{
"matchDatasources": ["docker", "github-releases", "pypi", "npm"],
"automerge": true,
"automergeType": "pr",
"matchUpdateTypes": ["minor", "patch"],
"matchPackagePatterns": [".*"]
}
]
}