forked from awslabs/gen-ai-evaluation-toolkit-on-aws
-
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.75 KB
/
Copy pathrenovate.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":preserveSemverRanges"
],
"dependencyDashboard": false,
"ignorePaths": [
"packages/generated/**"
],
"prConcurrentLimit": 5,
"prHourlyLimit": 2,
"labels": ["dependencies"],
"packageRules": [
{
"description": "Group AWS SDK v3 packages",
"matchPackageNames": ["@aws-sdk/**", "@smithy/**"],
"groupName": "aws-sdk"
},
{
"description": "Group AWS CDK ecosystem",
"matchPackageNames": [
"aws-cdk-lib",
"aws-cdk",
"constructs",
"cdk-nag",
"cdk-monitoring-constructs",
"cdk-ecr-deployment"
],
"groupName": "aws-cdk"
},
{
"description": "Group ESLint ecosystem",
"matchPackageNames": ["eslint", "eslint-*", "@eslint/**", "@typescript-eslint/**", "@stylistic/**"],
"groupName": "eslint"
},
{
"description": "Group Jest ecosystem",
"matchPackageNames": ["jest", "jest-*", "@types/jest", "ts-jest"],
"groupName": "jest"
},
{
"description": "Group TypeScript tooling",
"matchPackageNames": ["typescript", "ts-node", "tsx", "tsc-alias", "tsconfig-paths", "ts-loader", "@tsconfig/**"],
"groupName": "typescript"
},
{
"description": "Group Prettier",
"matchPackageNames": ["prettier"],
"groupName": "prettier"
},
{
"description": "Disable auto-merge for major updates",
"matchUpdateTypes": ["major"],
"automerge": false,
"labels": ["dependencies", "major-update"]
},
{
"description": "Minor and patch for dev dependencies",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"]
}
]
}