-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
41 lines (41 loc) · 1.66 KB
/
renovate.json
File metadata and controls
41 lines (41 loc) · 1.66 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"commitMessagePrefix": "👷 ",
"minimumReleaseAge": "7 days",
"internalChecksFilter": "strict",
"prCreation": "not-pending",
"schedule": ["every weekend"],
"postUpdateOptions": ["yarnDedupeHighest"],
"lockFileMaintenance": { "enabled": true },
"prConcurrentLimit": 5,
"prHourlyLimit": 1,
"ignorePaths": ["rum-events-format/**", "**/node_modules/**"],
"ignoreDeps": ["minidump", "minidump-common", "minidump-processor", "minidump-unwind", "breakpad-symbols"],
"packageRules": [
{
"description": "Catch-all: group all minor/patch updates",
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all non-major dependencies (minor/patch)"
},
{
"description": "Rust/Cargo semver deps — disabled until crash file test coverage is sufficient",
"matchManagers": ["cargo"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "rust dependencies (minor/patch)",
"enabled": false
},
{
"description": "Ignore all packages from the internal Datadog registry",
"matchDatasources": ["docker"],
"matchPackageNames": ["registry.ddbuild.io/**"],
"enabled": false
},
{
"description": "Integration apps reference a build artifact (integration-sdk.tgz) generated at test time, so yarn install can't run here. Bump versions but skip lockfile updates; lockfiles are regenerated by scripts/install-integration-apps.ts.",
"matchFileNames": ["e2e/integration/apps/**/package.json"],
"skipArtifactsUpdate": true,
"lockFileMaintenance": { "enabled": false }
}
]
}