-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrenovate.json
More file actions
42 lines (42 loc) · 1.41 KB
/
renovate.json
File metadata and controls
42 lines (42 loc) · 1.41 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>contentful/renovate-config"],
"enabledManagers": ["github-actions", "npm", "gradle", "bundler"],
"includePaths": [
".github/workflows/**",
"package.json",
"pnpm-lock.yaml",
"pnpm-workspace.yaml",
"implementations/node-sdk/**",
"implementations/node-sdk+web-sdk/**",
"implementations/web-sdk/**",
"implementations/web-sdk_react/**",
"implementations/react-web-sdk/**",
"implementations/react-native-sdk/**",
"packages/react-native-sdk/dev/**"
],
"prConcurrentLimit": 5,
"timezone": "Europe/Berlin",
"packageRules": [
{
"description": "Run GitHub Actions dependency updates during the Monday morning maintenance window.",
"matchManagers": ["github-actions"],
"schedule": ["* 8-11 * * 1"]
},
{
"description": "Run npm and pnpm dependency updates during the Tuesday morning maintenance window.",
"matchManagers": ["npm"],
"schedule": ["* 8-11 * * 2"]
},
{
"description": "Run Gradle dependency updates during the first-Monday morning maintenance window.",
"matchManagers": ["gradle"],
"schedule": ["* 9-12 1-7 * 1"]
},
{
"description": "Run Bundler dependency updates during the first-Monday late-morning maintenance window.",
"matchManagers": ["bundler"],
"schedule": ["* 10-13 1-7 * 1"]
}
]
}