Skip to content

build(deps): group Dependabot minor/patch updates into weekly PRs #83

Description

@kperry-godaddy

.github/dependabot.yml currently has no groups configuration for either ecosystem (gradle, github-actions), so every dependency bump arrives as its own PR.

Add grouping following the model merged in the ans repo (agentnameservice/ans#70): minor and patch bumps arrive as one consolidated PR per ecosystem per weekly run, while major version updates intentionally remain individual PRs so breaking changes get isolated review.

Suggested config, mirroring ans:

version: 2
updates:
  - package-ecosystem: "gradle"
    directory: "/"
    schedule:
      interval: "weekly"
    open-pull-requests-limit: 5
    groups:
      gradle-minor-patch:
        patterns:
          - "*"
        update-types:
          - "minor"
          - "patch"
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "weekly"
    open-pull-requests-limit: 5
    groups:
      actions-minor-patch:
        patterns:
          - "*"
        update-types:
          - "minor"
          - "patch"

Note: on the first run after merge, Dependabot will close any currently open per-dependency PRs and re-open them as grouped PRs.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    Priority

    None yet

    Projects

    Status
    Ready

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions