Skip to content

Commit

Permalink
ci: group dev dependencies in renovate (#1523)
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau authored Feb 18, 2024
1 parent 6374ef9 commit 75722ac
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,22 @@
"lint",
"types"
],
matchPackagePatterns: [
// Generated from the dependency dashboard, may not be complete.
"^(.*/)?autoflake$",
"^(.*/)?black$",
"^(.*/)?flake8$",
"^(.*/)?hypothesis$",
"^(.*/)?pycodestyle$",
"^(.*/)?pyfakefs$",
"^(.*/)?pyflakes$",
"^(.*/)?pylint$",
"^(.*/)?pytest",
"^(.*/)?responses$",
"^(.*/)?ruff$",
"^(.*/)?twine$",
"^(.*/)?types-"
],
matchUpdateTypes: ["minor", "patch", "pin", "digest"],
prPriority: -1,
automerge: true
Expand All @@ -95,7 +111,23 @@
groupSlug: "dev-dependencies",
matchDepTypes: ["devDependencies"],
matchUpdateTypes: ["major"],
prPriority: -3
prPriority: -3,
matchPackagePatterns: [
// Generated from the dependency dashboard, may not be complete.
"^(.*/)?autoflake$",
"^(.*/)?black$",
"^(.*/)?flake8$",
"^(.*/)?hypothesis$",
"^(.*/)?pycodestyle$",
"^(.*/)?pyfakefs$",
"^(.*/)?pyflakes$",
"^(.*/)?pylint$",
"^(.*/)?pytest",
"^(.*/)?responses$",
"^(.*/)?ruff$",
"^(.*/)?twine$",
"^(.*/)?types-"
]
},
{
// Pyright makes regular breaking changes in patch releases, so we separate these
Expand Down

0 comments on commit 75722ac

Please sign in to comment.