-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathrenovate.json
More file actions
99 lines (99 loc) · 2.85 KB
/
Copy pathrenovate.json
File metadata and controls
99 lines (99 loc) · 2.85 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"enabledManagers": [
"github-actions",
"dockerfile",
"docker-compose",
"pip-compile",
"custom.regex"
],
"automerge": false,
"dependencyDashboard": true,
"separateMajorMinor": true,
"separateMultipleMajor": true,
"prConcurrentLimit": 3,
"prHourlyLimit": 1,
"pip-compile": {
"managerFilePatterns": [
"/^config\\/python-requirements\\.lock$/",
"/^config\\/python-seed-requirements\\.lock$/"
]
},
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": [
"# renovate: datasource=(?<datasource>[a-z-]+) depName=(?<depName>[^\\s]+)\\s+ARG [A-Z0-9_]+_VERSION=(?<currentValue>[^\\s]+)"
]
},
{
"customType": "regex",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": [
"(?<depName>(?:@[a-z0-9][a-z0-9._-]*/)?[a-z0-9][a-z0-9._-]*)@(?<currentValue>\\d+(?:\\.\\d+)*(?:[-+][0-9A-Za-z.-]+)?)"
],
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
},
{
"customType": "regex",
"managerFilePatterns": ["/^\\.github\\/workflows\\/docker-publish\\.yml$/"],
"matchStrings": [
"SCOUT_VERSION: (?<currentValue>\\d+(?:\\.\\d+){2})"
],
"depNameTemplate": "docker/scout-cli",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver",
"extractVersionTemplate": "^v?(?<version>.+)$"
}
],
"packageRules": [
{
"description": "Pin Docker image digests in Dockerfile and Compose updates",
"matchCategories": ["docker"],
"pinDigests": true
},
{
"matchManagers": ["github-actions", "dockerfile", "custom.regex"],
"automerge": false
},
{
"description": "Require manual review for major updates",
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true
},
{
"description": "Require manual review for runtime, service, TypeScript, and plugin pins",
"matchPackageNames": [
"@anthropic-ai/claude-code",
"cli/cli",
"coderluii/holycode",
"dandavison/delta",
"docker/scout-cli",
"eza-community/eza",
"jesseduffield/lazygit",
"junegunn/fzf",
"just-containers/s6-overlay",
"golang",
"node",
"opencode-ai",
"opencode-claude-auth",
"paperclipai",
"typescript"
],
"dependencyDashboardApproval": true
},
{
"description": "Require manual review for Python packages",
"matchDatasources": ["pypi"],
"dependencyDashboardApproval": true
},
{
"description": "Keep prerelease updates out of immediate PR flow",
"matchNewValue": "/-/",
"dependencyDashboardApproval": true
}
]
}