forked from rukamori/ArchiveTune
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
50 lines (50 loc) · 1.11 KB
/
Copy pathrenovate.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"group:all"
],
"baseBranches": [
"dev"
],
"ignoreUnstable": true,
"respectLatest": true,
"separateMajorMinor": false,
"packageRules": [
{
"matchPackageNames": [
"*"
],
"ignoreUnstable": true,
"respectLatest": true
},
{
"matchManagers": [
"gradle"
],
"matchPackageNames": [
"/^com\\.github\\.libre\\-tube:NewPipeExtractor$/"
],
"enabled": false
},
{
"description": "Ignore all pre-release versions (alpha, beta, rc, dev, snapshot)",
"matchPackageNames": [
"*"
],
"allowedVersions": "!/-(alpha|beta|rc|dev|snapshot|SNAPSHOT|Alpha|Beta|RC|Dev)/i"
},
{
"description": "Allow pre-release updates for AndroidX Compose and Material3 packages",
"matchManagers": [
"gradle"
],
"matchPackageNames": [
"/^androidx\\.compose\\./"
],
"ignoreUnstable": false,
"respectLatest": false,
"allowedVersions": "/.*/"
}
]
}