-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
79 lines (79 loc) · 2.07 KB
/
renovate.json
File metadata and controls
79 lines (79 loc) · 2.07 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
{
"extends": ["config:recommended", "helpers:pinGitHubActionDigests"],
"prConcurrentLimit": 2,
"ignorePaths": ["docker/**"],
"ignoreDeps": ["pnpm"],
"semanticCommitType": "fix",
"major": true,
"labels": ["bot: dependencies"],
"packageRules": [
{
"matchPackageNames": ["actions/**", "github/codeql-action/**"],
"groupName": "all actions",
"groupSlug": "github-actions",
"schedule": ["every 4 month"]
},
{
"matchDatasources": ["docker"],
"labels": ["bot: docker-update"]
},
{
"matchPackageNames": ["@verdaccio/**"],
"matchUpdateTypes": ["minor", "patch", "major"],
"groupName": "core verdaccio dependencies",
"groupSlug": "all-verdaccio"
},
{
"matchPackageNames": [
"@trivago/**",
"prettier",
"husky",
"lint-staged"
],
"matchUpdateTypes": ["minor", "patch", "major"],
"groupName": "all linting dependencies",
"groupSlug": "all-linting"
},
{
"matchPackageNames": [
"vitest",
"@vitest/**",
"cypress"
],
"matchUpdateTypes": ["minor", "patch", "major"],
"groupName": "all test dependencies",
"groupSlug": "all-test"
},
{
"matchPackageNames": ["@types/**", "typescript"],
"matchUpdateTypes": ["minor", "patch", "major"],
"groupName": "typescript dependencies",
"groupSlug": "all-types"
},
{
"matchPackageNames": ["@changesets/**"],
"matchUpdateTypes": ["minor", "patch", "major"],
"groupName": "changesets dependencies",
"groupSlug": "all-changesets"
},
{
"matchPackageNames": ["vite"],
"matchUpdateTypes": ["minor", "patch", "major"],
"groupName": "build tooling dependencies",
"groupSlug": "all-build"
},
{
"matchPackageNames": [
"debug",
"get-port",
"js-yaml",
"kleur",
"cross-env",
"rimraf"
],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "utility dependencies",
"groupSlug": "all-utils"
}
]
}