-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathrenovate.json
More file actions
35 lines (35 loc) · 1.13 KB
/
renovate.json
File metadata and controls
35 lines (35 loc) · 1.13 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", "helpers:pinGitHubActionDigests"],
"minimumReleaseAge": "2 weeks",
"commitBody": "Generated by renovateBot",
"packageRules": [
{
"matchManagers": ["github-actions"],
"groupName": "github workflows"
},
{
"matchManagers": ["pip_requirements", "pip_setup", "pep621"],
"groupName": "python deps",
"schedule": ["before 9am on monday"]
},
{
"matchManagers": ["pep621"],
"matchDepTypes": ["dev", "dependency-groups"],
"matchPackageNames": ["!/^livekit/"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "python dev deps (non-major)",
"schedule": ["before 9am on monday"]
},
{
"matchFileNames": ["livekit-rtc/jupyter-html/package.json"],
"matchPackageNames": ["livekit-client", "/^@livekit//"],
"groupName": "jupyter-html livekit deps"
},
{
"matchFileNames": ["livekit-rtc/jupyter-html/package.json"],
"matchPackageNames": ["!livekit-client", "!/^@livekit//"],
"groupName": "jupyter-html deps"
}
]
}