Skip to content

Commit

Permalink
ci: remove deprecated renovate config options
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau committed May 21, 2024
1 parent cd48e13 commit 84894d4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
// Automerge patches, pin changes and digest changes.
// Also groups these changes together.
groupName: "bugfixes",
excludePackagePrefixes: ["lint", "types"],
excludeDepPatterns: ["lint/.*", "types/.*"],
matchUpdateTypes: ["patch", "pin", "digest"],
prPriority: 3, // Patches should go first!
automerge: true
},
{
// Update all internal packages in one higher-priority PR
groupName: "internal packages",
matchPackagePrefixes: ["craft-", "snap-"],
matchDepPatterns: ["craft-.*", "snap-.*"],
matchLanguages: ["python"],
prPriority: 2
},
Expand All @@ -59,10 +59,10 @@
// Minor changes can be grouped and automerged for dev dependencies, but are also deprioritised.
groupName: "development dependencies (non-major)",
groupSlug: "dev-dependencies",
matchPackagePrefixes: [
"dev",
"lint",
"types"
matchDepPatterns: [
"dev/.*",
"lint/.*",
"types/.*"
],
matchUpdateTypes: ["minor", "patch", "pin", "digest"],
prPriority: -1,
Expand All @@ -74,7 +74,7 @@
groupSlug: "doc-dependencies",
matchPackageNames: ["Sphinx", "furo"],
matchPackagePatterns: ["[Ss]phinx.*$"],
matchPackagePrefixes: ["docs"],
matchDepPatterns: ["docs/.*"],
},
{
// Other major dependencies get deprioritised below minor dev dependencies.
Expand Down

0 comments on commit 84894d4

Please sign in to comment.