-
Notifications
You must be signed in to change notification settings - Fork 14
/
renovate.json
77 lines (77 loc) · 2.28 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"timezone": "UTC",
"schedule": "every weekend",
"automergeType": "pr",
"extends": ["config:base"],
"separateMajorMinor": false,
"separateMinorPatch": false,
"vulnerabilityAlerts": {
"groupName": "Security Vulnerabilities",
"enabled": true
},
"labels": ["renovate"],
"packageRules": [
{
"groupName": "Ignore Packages",
"matchFileNames": [".happy/**", "scripts/**"],
"enabled": false
},
{
"groupName": "Github Actions",
"matchManagers": ["github-actions", "docker-compose"],
"matchFileNames": [".github/**", "docker-compose.yml"],
"enabled": true,
"assignees": ["seve"]
},
{
"groupName": "Backend",
"matchManagers": ["pip_requirements", "dockerfile", "html"],
"matchFileNames": [
"python_dependencies/backend/**",
"Dockerfile.backend",
"Dockerfile.backend_de",
"Dockerfile.backend_wmg",
"backend/api_server/index.html",
"python_dependencies/common/**"
],
"enabled": true,
"assignees": ["Bento007", "nayib-jose-gloria", "atarashansky"]
},
{
"groupName": "WMG and CellGuide Pipeline",
"matchManagers": ["pip_requirements", "dockerfile"],
"matchFileNames": [
"python_dependencies/wmg_processing/**",
"Dockerfile.wmg_pipeline",
"python_dependencies/cellguide_pipeline/**",
"Dockerfile.cellguide_pipeline"
],
"enabled": true,
"assignees": ["atarashansky"]
},
{
"groupName": "Submissions",
"matchManagers": ["pip_requirements", "dockerfile"],
"matchFileNames": [
"python_dependencies/submissions/**",
"python_dependencies/upload_handler/**",
"Dockerfile.dataset_submissions",
"Dockerfile.upload_failures",
"Dockerfile.upload_success",
"python_dependencies/processing/**",
"Dockerfile.processing",
"Dockerfile.processing_base"
],
"enabled": true,
"assignees": ["nayib-jose-gloria", "ebezzi", "Bento007"]
},
{
"groupName": "Frontend",
"matchManagers": ["npm", "nvm", "dockerfile"],
"matchFileNames": ["frontend/**"],
"enabled": true,
"assignees": ["tihuan", "seve"]
}
]
}