-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.json
65 lines (65 loc) · 1.94 KB
/
default.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Default preset for use with C.S.V. Alpha's repos",
"extends": [
"config:base",
":disableDependencyDashboard",
":enableVulnerabilityAlerts",
":semanticCommits",
":semanticCommitTypeAll(chore)",
"docker:enableMajor",
"docker:pinDigests",
"helpers:pinGitHubActionDigests"
],
"labels": ["dependencies"],
"prConcurrentLimit": 0,
"rangeStrategy": "bump",
"timezone": "Europe/Amsterdam",
"packageRules": [
{
"extends": ["schedule:weekly"],
"matchManagers": ["bundler"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all non-major Bundler dependencies",
"groupSlug": "all-minor-patch-bundler"
},
{
"extends": ["schedule:weekly"],
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all non-major npm dependencies",
"groupSlug": "all-minor-patch-npm"
},
{
"matchManagers": ["npm"],
"matchDepTypes": ["engines", "resolutions"],
"enabled": false
},
{
"matchManagers": ["npm"],
"matchPackageNames": ["yarn"],
"groupName": "yarn"
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all actions"
},
{
"matchManagers": ["github-actions"],
"matchPackageNames": ["postgres"],
"enabled": false
}
],
"regexManagers": [
{
"description": "Update actionlint versions in workflow files",
"fileMatch": ["^\\.github\\/workflows\\/[^/]+\\.ya?ml$"],
"matchStrings": ["\\s+.+download-actionlint\\.bash\\)? (?<currentValue>.+)"],
"datasourceTemplate": "github-releases",
"depNameTemplate": "rhysd\/actionlint",
"extractVersionTemplate": "^v?(?<version>.*)$"
}
],
"enabledManagers": ["bundler", "dockerfile", "github-actions", "html", "npm", "nvm", "regex", "ruby-version"]
}