diff options
| -rw-r--r-- | .github/dependabot.yml | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0bbc7cb8..0d2b9bb0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,6 +6,13 @@ updates:        interval: "weekly"      labels:        - "area/dependencies" +    groups: # group minor/patch updates together +      minor: +        patterns: +          - "*" +        update-types: +          - "minor" +          - "patch"    - package-ecosystem: "npm"      directory: "/" @@ -13,3 +20,10 @@ updates:        interval: "weekly"      labels:        - "area/dependencies" +    groups: # group minor/patch updates together +      minor: +        patterns: +          - "*" +        update-types: +          - "minor" +          - "patch" |