-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
64 lines (64 loc) · 1.91 KB
/
Copy pathrenovate.json
File metadata and controls
64 lines (64 loc) · 1.91 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
{
"extends": ["config:recommended", "helpers:pinGitHubActionDigests"],
"prConcurrentLimit": 2,
"minimumReleaseAge": "15 days",
"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"],
"matchUpdateTypes": ["minor", "patch", "major"],
"groupName": "all linting dependencies",
"groupSlug": "all-linting"
},
{
"matchPackageNames": ["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", "rimraf"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "utility dependencies",
"groupSlug": "all-utils"
}
]
}