Skip to content

Commit 0c59eb8

Browse files
authored
Try to disable Python in github-actions (#13789)
1 parent 30c4307 commit 0c59eb8

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

.github/renovate.json5

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,14 @@
1212
},
1313
"packageRules": [
1414
{
15-
"groupName": "GitHub Actions",
16-
"matchManagers": ["github-actions"],
17-
"description": "Quarterly update of GitHub Action dependencies",
18-
"schedule": ["every 3 months on the first day of the month"]
19-
},
20-
{
15+
groupName: "GitHub Actions",
16+
matchManagers: ["github-actions"],
2117
// This package rule disables updates for `actions/setup-python` Python versions:
2218
// it's better to do these manually as there's often a reason why we can't use
2319
// the latest Python version in CI for a specific job
24-
groupName: "Python versions",
25-
matchManagers: ["github-actions"],
26-
matchPackageNames: ["python"],
27-
description: "Disable PRs updating Python versions",
28-
enabled: false,
20+
matchPackageNames: ["!python"],
21+
description: "Quarterly update of GitHub Action dependencies",
22+
schedule: ["every 3 months on the first day of the month"]
2923
},
3024
{
3125
groupName: "most test/lint dependencies",

0 commit comments

Comments
 (0)