-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathnon-pinned.json
More file actions
84 lines (84 loc) · 2.45 KB
/
Copy pathnon-pinned.json
File metadata and controls
84 lines (84 loc) · 2.45 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
80
81
82
83
84
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
":combinePatchMinorReleases",
":dependencyDashboard",
":separateMajorReleases",
"config:recommended",
"group:monorepos",
"github>bitwarden/renovate-config:pin-actions"
],
"commitMessagePrefix": "[deps]:",
"commitMessageTopic": "{{depName}}",
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
"branchConcurrentLimit": 0,
"rebaseWhen": "conflicted",
"minimumReleaseAge": "7 days",
"lockFileMaintenance": {
"enabled": true,
"schedule": [
"every 2nd week starting on the 2 week of the year before 4am on Monday"
]
},
"schedule": [
"every 2nd week starting on the 2 week of the year before 4am on Monday"
],
"vulnerabilityAlerts": {
"addLabels": ["security"],
"additionalReviewers": ["team:team-appsec"]
},
"customDatasources": {
"rust-nightly": {
"defaultRegistryUrlTemplate": "https://renovate-rust-nightly.phi-ag.workers.dev/"
}
},
"customManagers": [
{
"customType": "regex",
"depNameTemplate": "rust",
"managerFilePatterns": ["/(^|/)rust-toolchain\\.toml?$/"],
"matchStrings": [
"channel\\s*=\\s*\"(?<currentValue>\\d+\\.\\d+(?:\\.\\d+)?)\""
],
"packageNameTemplate": "rust-lang/rust",
"datasourceTemplate": "github-tags"
},
{
"customType": "regex",
"depNameTemplate": "rust-nightly",
"managerFilePatterns": ["/(^|/)rust-toolchain\\.toml?$/"],
"matchStrings": [
"nightly-channel\\s*=\\s*\"nightly-(?<currentValue>.+?)\"\\n"
],
"versioningTemplate": "regex:^(?<major>\\d{4})-(?<minor>\\d{2})-(?<patch>\\d{2})$",
"datasourceTemplate": "custom.rust-nightly"
}
],
"packageRules": [
{
"matchManagers": [
"cargo",
"docker-compose",
"dockerfile",
"github-actions",
"npm",
"nuget"
],
"matchUpdateTypes": ["patch"],
"dependencyDashboardApproval": true,
"description": "View patch updates on the dashboard for Cargo, Docker Compose, Dockerfile, GitHub Actions, NPM and NuGet"
},
{
"matchUpdateTypes": ["major"],
"addLabels": ["major-update"]
},
{
"description": "Don't pin msbuild-sdks in global.json - they don't support bracket syntax",
"matchFileNames": ["**/global.json"],
"matchDepTypes": ["msbuild-sdk"],
"rangeStrategy": "replace"
}
],
"ignoreDeps": ["node", "npm"]
}