-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathrenovate.json
More file actions
52 lines (52 loc) · 1.61 KB
/
Copy pathrenovate.json
File metadata and controls
52 lines (52 loc) · 1.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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices"],
"assignees": ["zone117x", "viceice"],
"packageRules": [
{
"description": "set fix scope for mimedb",
"matchDepNames": ["mime-db"],
"semanticCommitType": "fix"
},
{
"description": "set feat scope for mimedb for minor and major updates",
"matchDepNames": ["mime-db"],
"matchUpdateTypes": ["minor", "major"],
"semanticCommitType": "feat"
},
{
"description": "Pin actions to full semver",
"matchManagers": ["github-actions"],
"matchDepTypes": ["action"],
"rangeStrategy": "pin",
"pinDigests": true
},
{
"description": "weekly digest updates non full semver actions",
"matchManagers": ["github-actions"],
"matchDepTypes": ["action"],
"matchUpdateTypes": ["digest"],
"matchCurrentValue": "!/^v?\\d+\\.\\d+\\.\\d+$/",
"extends": ["schedule:weekly"]
},
{
"description": "No digest updates for full semver actions",
"matchManagers": ["github-actions"],
"matchDepTypes": ["action"],
"matchUpdateTypes": ["digest"],
"matchCurrentValue": "/^v?\\d+\\.\\d+\\.\\d+$/",
"enabled": false
}
],
"customManagers": [
{
"customType": "regex",
"description": "Update mime-db",
"managerFilePatterns": ["/(^|/)MimeMapping\\.csproj$/"],
"matchStrings": ["<MimeDbVersion>(?<currentValue>.+?)</MimeDbVersion>"],
"datasourceTemplate": "github-releases",
"depNameTemplate": "mime-db",
"packageNameTemplate": "jshttp/mime-db"
}
]
}