-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathrenovate.json
More file actions
32 lines (32 loc) · 1.12 KB
/
renovate.json
File metadata and controls
32 lines (32 loc) · 1.12 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
{
"extends": ["config:base", ":semanticCommitTypeAll(chore)"],
"ignorePaths": ["docs/**", "website/versioned_docs/**"],
"pinVersions": false,
"separateMajorMinor": false,
"dependencyDashboard": false,
"semanticCommits": "enabled",
"lockFileMaintenance": {
"enabled": true,
"automerge": true,
"automergeType": "branch"
},
"packageRules": [
{
"matchPaths": ["pyproject.toml"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["major", "minor"],
"groupName": "major/minor dev dependencies",
"groupSlug": "dev-dependencies",
"automerge": true,
"automergeType": "branch"
},
{
"matchPackageNames": ["@apify/*", "@crawlee/*", "apify", "apify-client", "apify-shared", "apify-fingerprint-datapoints", "crawlee", "got-scraping"],
"minimumReleaseAge": "0 days"
}
],
"minimumReleaseAge": "1 day",
"internalChecksFilter": "strict",
"schedule": ["before 7am every weekday"],
"ignoreDeps": ["apify", "docusaurus-plugin-typedoc-api"]
}