-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrenovate.json
100 lines (100 loc) · 2.22 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":maintainLockFilesWeekly"
],
"automerge": true,
"autodiscover": true,
"configMigration": true,
"platformAutomerge": true,
"platformCommit": "enabled",
"prConcurrentLimit": 0,
"allowScripts": true,
"rollbackPrs": true,
"rangeStrategy": "pin",
"recreateWhen": "always",
"commitBody": "{{#if logJSON.hasReleaseNotes}}{{#each logJSON.versions as |release|}}{{# if release.releaseNotes}}##### v{{{release.version}}} \n\n{{{release.releaseNotes.body}}}{{/if}}{{/each}}{{/if}}",
"ignorePaths": [
"**/monorepo/dist/**"
],
"gitIgnoredAuthors": [
],
"autodiscoverFilter": [
"zemn-me/monorepo"
],
"allowedPostUpgradeCommands": [
"./sh/postUpgrade.sh"
],
"customManagers": [
{
"customType": "regex",
"description": "Renovate directives",
"fileMatch": [
"^MODULE.bazel$",
"^WORKSPACE$"
],
"matchStrings": [
"#\\s*renovate:\n#\\s*datasource\\s*=\\s*(?<datasource>.*)\n#\\s*versioning\\s*=\\s*(?<versioning>.*)\n#\\s*depName\\s*=\\s*(?<depName>.*)\n[^=]+=\\s*\"(?<currentValue>[^\"]*)\""
],
"datasourceTemplate": "{{{datasource}}}",
"currentValueTemplate": "{{{currentValue}}}",
"versioningTemplate": "{{{versioning}}}",
"depNameTemplate": "{{{depName}}}"
}
],
"packageRules": [
{
"matchManagers": [
"bazel-module"
],
"matchPackageNames": [
"rules_oci"
],
"allowedVersions": "!/1.8.0$/"
},
{
"matchManagers": [
"cargo",
"bazel",
"custom.regex",
"gomod",
"pip-compile",
"pip_requirements",
"bazel",
"bazel-module",
"bazelisk"
],
"postUpgradeTasks": {
"commands": [
"./sh/postUpgrade.sh"
],
"executionMode": "branch",
"fileFilters": [
"Cargo.Bazel.lock",
"Cargo.toml",
"cargo-bazel-lock.json",
"**/*.ts",
"go.mod",
"MODULE.bazel",
"MODULE.bazel.lock",
"gazelle_python.yaml"
],
"recreateWhen": "always"
}
},
{
"groupName": "pulumi_cli",
"matchPackageNames": [
"/pulumi_cli_.*/"
]
},
{
"groupName": "chromedriver",
"matchPackageNames": [
"/com_googleapis_storage_chromedriver.*/"
]
}
]
}