-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
77 lines (77 loc) · 2.08 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
{
"extends": ["config:base", "helpers:pinGitHubActionDigests"],
"prConcurrentLimit": 8,
"ignorePaths": ["docker/**"],
"schedule": ["every 2 days"],
"ignoreDeps": [
"verdaccio",
"@verdaccio/test-helper",
"pnpm",
"yarn",
"npm",
"@yarnpkg/cli-dist"
],
"baseBranches": ["main", "6.x"],
"semanticCommitType": "fix",
"major": true,
"labels": ["bot: dependencies"],
"packageRules": [
{
"packageNames": ["actions/*", "github/codeql-action/*"],
"groupName": "all actions",
"groupSlug": "github-actions",
"schedule": ["every 4 month"]
},
{
"packageNames": ["@verdaccio/local-storage"],
"allowedVersions": "^10.3.4",
"matchBaseBranches": ["main"]
},
{
"matchDatasources": ["docker"],
"labels": ["bot: docker-update"]
},
{
"matchPackagePatterns": [
"@verdaccio/*",
"verdaccio-audit",
"verdaccio-htpasswd",
"verdaccio-auth-memory",
"verdaccio-memory"
],
"matchUpdateTypes": ["minor", "patch", "major"],
"groupName": "core verdaccio dependencies",
"groupSlug": "all-verdaccio",
"baseBranchList": ["main", "6.x"]
},
{
"matchPackagePatterns": [
"@trivago/*",
"prettier",
"eslint-*",
"eslint",
"stylelint",
"@typescript-eslint/*"
],
"matchUpdateTypes": ["minor", "patch", "major"],
"groupName": "all linting dependencies",
"groupSlug": "all-linting",
"baseBranchList": ["main", "6.x"]
},
{
"matchPackagePatterns": ["@testing-library/*", "vitest", "supertest", "nock"],
"matchUpdateTypes": ["minor", "patch", "major"],
"groupName": "all test dependencies",
"groupSlug": "all-test",
"baseBranchList": ["main", "6.x"]
},
{
"matchPackagePatterns": ["@type/*", "typescript"],
"matchUpdateTypes": ["minor", "patch", "major"],
"groupName": "typescript dependencies",
"groupSlug": "all-types",
"baseBranchList": ["main", "6.x"]
}
],
"pinVersions": false
}