forked from cbcoutinho/nextcloud-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
51 lines (51 loc) · 1.5 KB
/
Copy pathrenovate.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
"mergeConfidence:all-badges"
],
"dependencyDashboard": true,
"packageRules": [
{
"matchPackageNames": [
"pillow"
],
"allowedVersions": "<12.0.0"
},
{
"description": "Pin each Nextcloud matrix entry to its own major version",
"matchDepNames": ["nextcloud-32"],
"allowedVersions": "/^32\\./"
},
{
"matchDepNames": ["nextcloud-33"],
"allowedVersions": "/^33\\./"
},
{
"matchDepNames": ["nextcloud-34"],
"allowedVersions": "/^34\\./"
},
{
"description": "Pin docker-compose.yml Nextcloud image to 32.x",
"matchPackageNames": ["docker.io/library/nextcloud"],
"matchFileNames": ["docker-compose.yml"],
"allowedVersions": "/^32\\./"
}
],
"customManagers": [
{
"customType": "regex",
"description": "Nextcloud version matrix pins in CI — each entry gets a version-specific dep name",
"managerFilePatterns": [
"/^\\.github/workflows/test\\.yml$/"
],
"matchStrings": [
"nextcloud_version:\\s*\"(?<major>\\d+)\"\\s*\\n\\s*#?\\s*nextcloud_image:\\s*\"(?<packageName>[^:]+):(?<currentValue>[^@]+)@(?<currentDigest>sha256:[a-f0-9]+)\""
],
"depNameTemplate": "nextcloud-{{{major}}}",
"packageNameTemplate": "docker.io/library/nextcloud",
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
}
]
}