-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
79 lines (79 loc) · 2.61 KB
/
Copy pathrenovate.json
File metadata and controls
79 lines (79 loc) · 2.61 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests",
":preserveSemverRanges"
],
"timezone": "America/Los_Angeles",
"minimumReleaseAge": "3 days",
"schedule": ["before 6am on Tuesday"],
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 6am on Tuesday"]
},
"packageRules": [
{
"description": "Update compatible Rust dependencies together",
"matchManagers": ["cargo"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "Rust dependencies"
},
{
"description": "Keep action digest updates in one review",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "GitHub Actions"
},
{
"description": "Update compatible frontend dependencies together",
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "Frontend dependencies"
},
{
"description": "Update browser packages with their binaries",
"matchManagers": ["npm"],
"matchPackageNames": ["@playwright/test", "puppeteer-core"],
"enabled": false
},
{
"description": "Update the mise installer atomically",
"matchDepNames": ["jdx/mise"],
"groupName": "mise installer"
},
{
"description": "Update compatible container images together",
"matchManagers": ["dockerfile", "docker-compose"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "Container images"
}
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["/^dist-workspace\\.toml$/"],
"matchStrings": ["cargo-dist-version\\s*=\\s*\"(?<currentValue>[^\"]+)\""],
"depNameTemplate": "cargo-dist",
"datasourceTemplate": "crate"
},
{
"customType": "regex",
"managerFilePatterns": ["/^\\.readthedocs\\.yaml$/"],
"matchStrings": ["jdx/mise/releases/download/v(?<currentValue>[^ /]+)"],
"depNameTemplate": "jdx/mise",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v?(?<version>.*)$",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"managerFilePatterns": ["/^\\.github/actions/setup/action\\.yml$/"],
"matchStrings": ["version:\\s*(?<currentValue>[0-9]+\\.[0-9]+\\.[0-9]+)"],
"depNameTemplate": "jdx/mise",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v?(?<version>.*)$",
"versioningTemplate": "semver"
}
]
}