-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathrenovate.json
More file actions
79 lines (79 loc) · 1.98 KB
/
renovate.json
File metadata and controls
79 lines (79 loc) · 1.98 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":automergeStableNonMajor"
],
"allowScripts": true,
"ignoreScripts": false,
"packageRules": [
{
"groupName": "Templated CI",
"matchDepNames": [
"actions/checkout",
"actions/download-artifact",
"actions/setup-python",
"actions/upload-artifact",
"codecov/codecov-action",
"docker/build-push-action",
"docker/login-action",
"docker/metadata-action",
"docker/setup-buildx-action",
"peaceiris/actions-gh-pages",
"pypa/gh-action-pypi-publish",
"softprops/action-gh-release"
],
"enabled": false,
"description": [
"Group and update GitHub actions through the copier template to prevent merge conflicts"
]
},
{
"groupName": "Indirect python dependencies",
"matchUpdateTypes": [
"patch",
"minor"
],
"matchManagers": [
"pip_requirements"
],
"description": "Group non-major indirect (dev-requirements.txt only) python updates"
},
{
"groupName": "Direct python dependencies",
"matchUpdateTypes": [
"patch"
],
"matchManagers": [
"pep621"
],
"description": "Group patch direct (pyproject.toml) python updates"
},
{
"groupName": "GitHub Actions",
"matchUpdateTypes": [
"patch",
"minor"
],
"matchManagers": [
"github-actions"
],
"description": "Group non-major github action updates"
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^\\.github/workflows/[^/]+\\.ya?ml$"
],
"matchStringsStrategy": "combination",
"matchStrings": [
"uses: actions/checkout@v*\\s",
"repository: (?<depName>.*?)\\s",
"ref: (?<currentValue>.*?)\\s"
],
"datasourceTemplate": "github-tags"
}
]
}