-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.renovaterc.json
More file actions
110 lines (110 loc) · 3.19 KB
/
.renovaterc.json
File metadata and controls
110 lines (110 loc) · 3.19 KB
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
101
102
103
104
105
106
107
108
109
110
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Establish base config, schedule, and manager defaults",
"addLabels": ["dependencies"],
"extends": [
":dependencyDashboard",
":semanticPrefixFixDepsChoreOthers",
":ignoreModulesAndTests",
"replacements:all",
"workarounds:all"
],
"dependencyDashboardApproval": true,
"recreateWhen": "never",
"separateMajorMinor": false,
"lockFileMaintenance": { "enabled": true },
"git-submodules": { "enabled": true },
"enabledManagers": [
"custom.regex",
"devcontainer",
"git-submodules",
"github-actions",
"pep621"
],
"github-actions": {
"managerFilePatterns": ["(^|/)\\.github/workflows/[^/]+$"]
},
"pep621": {
"managerFilePatterns": ["(^|/)pyproject\\.toml[^/]*$"],
"rangeStrategy": "bump"
},
"customManagers": [
{
"description": "copier",
"customType": "regex",
"datasourceTemplate": "pypi",
"depNameTemplate": "copier",
"managerFilePatterns": [
"(^|/)env\\.json[^/]*$",
"(^|/)\\.github/workflows/env\\.yml[^/]*$",
"(^|/)\\.vscode/settings\\.json[^/]*$"
],
"matchStrings": [
"^\\s+\"COPIER_VERSION\": \"(?<currentValue>[^\"]+)\",?$",
"^\\s+copier_version: { value: \"(?<currentValue>[^\"]+)\" }$"
]
},
{
"description": "just",
"customType": "regex",
"datasourceTemplate": "pypi",
"depNameTemplate": "rust-just",
"managerFilePatterns": [
"(^|/)env\\.json[^/]*$",
"(^|/)\\.github/workflows/env\\.yml[^/]*$",
"(^|/)\\.vscode/settings\\.json[^/]*$"
],
"matchStrings": [
"^\\s+\"JUST_VERSION\": \"(?<currentValue>[^\"]+)\",?$",
"^\\s+just_version: { value: \"(?<currentValue>[^\"]+)\" }$"
]
},
{
"description": "python",
"customType": "regex",
"datasourceTemplate": "python-version",
"depNameTemplate": "python",
"managerFilePatterns": [
"(^|/)env\\.json[^/]*$",
"(^|/)\\.github/workflows/env\\.yml[^/]*$",
"(^|/)\\.vscode/settings\\.json[^/]*$"
],
"matchStrings": [
"^\\s+\"PYTHON_VERSION\": \"(?<currentValue>[^\"]+)\",?$",
"^\\s+python_version: { value: \"(?<currentValue>[^\"]+)\" }$"
]
},
{
"description": "uv",
"customType": "regex",
"datasourceTemplate": "github-releases",
"depNameTemplate": "astral-sh/uv",
"managerFilePatterns": [
"(^|/)env\\.json[^/]*$",
"(^|/)\\.github/workflows/env\\.yml[^/]*$",
"(^|/)\\.vscode/settings\\.json[^/]*$"
],
"matchStrings": [
"^\\s+\"UV_VERSION\": \"(?<currentValue>[^\"]+)\",?$",
"^\\s+uv_version: { value: \"(?<currentValue>[^\"]+)\" }$"
]
}
],
"packageRules": [
{
"groupName": "all dependencies",
"groupSlug": "all",
"matchPackageNames": ["*"]
},
{
"description": "Update regex pins separately",
"groupName": "regex",
"matchManagers": ["custom.regex"]
},
{
"description": "Update `.devcontainer` updates separately for manual testing",
"groupName": "devcontainer",
"matchManagers": ["devcontainer"]
}
]
}