-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.json
More file actions
162 lines (162 loc) · 3.48 KB
/
Copy pathdefault.json
File metadata and controls
162 lines (162 loc) · 3.48 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits",
"mergeConfidence:all-badges"
],
"schedule": [
"before 6am"
],
"timezone": "America/New_York",
"labels": [
"dependencies"
],
"prHourlyLimit": 4,
"prConcurrentLimit": 8,
"packageRules": [
{
"description": "Group and automerge GitHub Actions non-major updates",
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true,
"automergeType": "pr",
"groupName": "github-actions"
},
{
"description": "Group React ecosystem updates",
"matchPackagePatterns": [
"^react",
"^@types/react"
],
"groupName": "react-ecosystem"
},
{
"description": "Group Vite and its plugins",
"matchPackagePatterns": [
"^vite",
"^@vitejs/"
],
"groupName": "vite"
},
{
"description": "Group TypeScript toolchain",
"matchPackageNames": [
"typescript",
"tslib"
],
"groupName": "typescript"
},
{
"description": "Group FastAPI + uvicorn runtime pair",
"matchPackageNames": [
"fastapi",
"uvicorn"
],
"groupName": "fastapi-uvicorn"
},
{
"description": "Automerge devDependency minor and patch updates",
"matchDepTypes": [
"devDependencies"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true,
"automergeType": "pr"
},
{
"description": "Automerge React ecosystem non-major updates (tier 1)",
"matchPackagePatterns": [
"^react",
"^@types/react"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true,
"automergeType": "pr"
},
{
"description": "Automerge Vite non-major updates (tier 1)",
"matchPackagePatterns": [
"^vite",
"^@vitejs/"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true,
"automergeType": "pr"
},
{
"description": "Automerge docker-compose non-major image updates (tier 1)",
"matchManagers": [
"docker-compose"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true,
"automergeType": "pr",
"groupName": "docker image updates"
},
{
"description": "Automerge Python non-major updates (tier 1)",
"matchManagers": [
"pip_requirements",
"pep621"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true,
"automergeType": "pr"
},
{
"description": "Label npm and pip major updates for the Eir agent-gate (tier 3)",
"matchManagers": [
"npm",
"pip_requirements",
"pep621"
],
"matchUpdateTypes": [
"major"
],
"addLabels": [
"renovate-major"
]
},
{
"description": "Label docker-compose major image updates for the Eir agent-gate (tier 3)",
"matchManagers": [
"docker-compose"
],
"matchUpdateTypes": [
"major"
],
"addLabels": [
"renovate-major-infra"
]
}
],
"vulnerabilityAlerts": {
"labels": [
"security"
],
"enabled": true
},
"minimumReleaseAge": "3 days"
}