0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 20:42:43 +00:00

Group minor & patch dependency PRs

Instead of individual dependabot PRs that need to be merged, then we trigger a rebase, wait 5 minutes, then merge the next...

We can group dependency updates together in a single PR. This change makes all dev dependencies bundle minor and patch versions into one PR, and similarly with production dependencies. Major versions will still have separate PRs as they tend to break things.
This commit is contained in:
Trevor Buckner
2025-07-03 14:45:29 -04:00
committed by GitHub
parent 169f089d08
commit 380e593b42

View File

@@ -5,6 +5,15 @@ updates:
schedule:
interval: daily
open-pull-requests-limit: 99
  groups:
    dev-dependencies:
      dependency-type: "development"
      patterns: ["*"]
      update-types: ["patch", "minor"]
    prod-dependencies:
      dependency-type: "production"
      patterns: ["*"]
      update-types: ["patch", "minor"]
ignore:
- dependency-name: eslint
versions: