forked from Flexget/Flexget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
90 lines (90 loc) · 2.26 KB
/
renovate.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
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":automergeDigest",
":automergePatch",
":enablePreCommit",
":maintainLockFilesWeekly",
":preserveSemverRanges",
":rebaseStalePrs"
],
"gitIgnoredAuthors": [
"github-actions[bot]@users.noreply.github.com",
"66853113+pre-commit-ci[bot]@users.noreply.github.com"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^\\.github/workflows/[^/]+\\.ya?ml$"
],
"matchStrings": [
"\\s*[A-Z_]+?_VERSION:\\s*[\"']?(?<currentValue>.+?)[\"']?\\s*# renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)(?: versioning=(?<versioning>.+?))?\\s"
]
},
{
"customType": "regex",
"fileMatch": [
"^\\.readthedocs\\.ya?ml$"
],
"matchStrings": [
":\\s*[\"']?(?:ubuntu-)?(?<currentValue>[^:]+?)[\"']?\\s*# renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)(?: versioning=(?<versioning>.+?))?\\s"
]
}
],
"npm": {
"enabled": false
},
"pep723": {
"fileMatch": [
"scripts/bundle_webui.py",
"scripts/dev_tools.py",
"scripts/update_changelog.py"
]
},
"pip_requirements": {
"enabled": false
},
"packageRules": [
{
"extends": [
":pinDigestsDisabled"
],
"matchManagers": [
"custom.regex"
],
"matchDatasources": [
"docker"
]
},
{
"description": "This pre-commit env takes a long time to rebuild. Limit updates to monthly.",
"matchPackageNames": [
"renovatebot/pre-commit-hooks"
],
"extends": [
"schedule:monthly"
]
},
{
"description": "Group all ruff updates together. Wait before merge so both sources are out.",
"groupName": "ruff",
"matchPackageNames": [
"ruff",
"astral-sh/ruff-pre-commit"
],
"minimumReleaseAge": "6 hours"
},
{
"description": "Group all uv updates together. Wait before merge so both sources are out.",
"groupName": "uv",
"matchPackageNames": [
"uv",
"ghcr.io/astral-sh/uv",
"astral-sh/uv-pre-commit"
],
"minimumReleaseAge": "6 hours"
}
]
}