We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e273a5 commit d511eb8Copy full SHA for d511eb8
.github/dependabot.yml
@@ -9,3 +9,24 @@ updates:
9
directory: "/" # Location of package manifests
10
schedule:
11
interval: "weekly"
12
+ groups:
13
+ # Group all dependencies by with minor or patch version updates into one
14
+ # PR with production and development dependencies grouped into separate
15
+ # PRs.
16
+ # All security updates and major updates are on separate PRs
17
+ production-dependencies:
18
+ dependency-type: "production"
19
+ applies-to: "version-updates"
20
+ patterns:
21
+ - "*"
22
+ update-types:
23
+ - "minor"
24
+ - "patch"
25
+ development-dependencies:
26
+ dependency-type: "development"
27
28
29
30
31
32
0 commit comments