-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathrenovate.json5
More file actions
46 lines (46 loc) · 1.26 KB
/
Copy pathrenovate.json5
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"dependencyDashboardApproval": true,
"minimumReleaseAge": "2 days",
"schedule": ["* 10 * * 1"],
"timezone": "America/New_York",
// Ensure Renovate installs and uses a supported Pixi version so it can
// regenerate pixi.lock during updates. See:
// https://docs.renovatebot.com/modules/manager/pixi/
"constraints": {
"pixi": ">=0.40.0"
},
"enabledManagers": ["pixi", "pep621", "pre-commit", "github-actions"],
"lockFileMaintenance": {
"enabled": false,
},
"pre-commit": {
"enabled": true,
},
"packageRules": [
{
"matchDatasources": ["pypi", "conda"],
"matchManagers": ["pixi", "pep621", "pre-commit"],
"groupName": "pixi dependencies",
"groupSlug": "pixi-deps",
},
{
"matchManagers": ["pep621", "pixi"],
"rangeStrategy": "pin"
},
{
"matchManagers": ["github-actions"],
"groupName": "github actions",
"groupSlug": "github-actions",
"pinDigests": true,
"separateMajorMinor": false,
"separateMultipleMajor": false,
},
{
"matchManagers": ["github-actions"],
"matchDepTypes": ["python-version"],
"enabled": false
},
],
}