Skip to content

Commit 73c4f97

Browse files
committed
ci(renovate): treat python minor releases as major
1 parent 534a5f1 commit 73c4f97

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.renovaterc

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,33 @@
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
44
"github>dargmuesli/renovate-config"
5+
],
6+
"ignorePresets": ["group:allNonMajor"],
7+
"packageRules": [
8+
{
9+
"groupName": "all non-major dependencies",
10+
"groupSlug": "all-minor-patch",
11+
"matchPackageNames": [
12+
"*",
13+
"!python",
14+
"!actions/setup-python"
15+
],
16+
"matchUpdateTypes": [
17+
"minor",
18+
"patch"
19+
]
20+
},
21+
{
22+
"groupName": "all non-major python dependencies",
23+
"groupSlug": "all-minor-patch-python",
24+
"matchPackageNames": [
25+
"python",
26+
"actions/setup-python"
27+
],
28+
"matchUpdateTypes": [
29+
"minor",
30+
"patch"
31+
]
32+
}
533
]
634
}

0 commit comments

Comments
 (0)