forked from jaegertracing/jaeger-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
35 lines (35 loc) · 1.12 KB
/
Copy pathrenovate.json
File metadata and controls
35 lines (35 loc) · 1.12 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:recommended", ":gitSignOff"],
"labels": ["changelog:dependencies"],
"suppressNotifications": ["prEditedNotification"],
"schedule": ["on sunday"],
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"]
},
"packageRules": [
{
"groupName": "vite-plus and bundled vitest",
"matchManagers": ["npm"],
"matchPackageNames": ["vite-plus", "vitest", "@vitest/coverage-v8"],
"description": "vite-plus bundles a specific vitest version internally; these must be bumped together to avoid peer-dependency version mismatches"
},
{
"groupName": "do not apply patch upgrades to dependencies",
"matchManagers": ["npm"],
"matchUpdateTypes": ["patch", "digest"],
"enabled": false
},
{
"matchManagers": ["github-actions"],
"groupName": "github-actions deps"
},
{
"groupName": "do not apply patch upgrades to GH workflows",
"matchFileNames": [".github/workflows/**"],
"matchUpdateTypes": ["patch", "digest"],
"enabled": false
}
]
}