Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@ updates:
commit-message:
prefix: "chore"
groups:
all-npm:
all-npm-minor-patch:
patterns:
- "*"
update-types:
- "minor"
- "patch"
Comment on lines +28 to +33
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While the current configuration correctly restricts the group to minor and patch updates, using the same group name all-npm-minor-patch across multiple package-ecosystem entries can lead to ambiguous pull request titles in the GitHub UI. Dependabot typically uses the group name in the PR title (e.g., Bump all-npm-minor-patch dependencies). To improve triage efficiency and clarity, consider using directory-specific group names.

      dashboard-npm-minor-patch:
        patterns:
          - "*"
        update-types:
          - "minor"
          - "patch"


- package-ecosystem: "npm"
directory: "/showcase/app"
Expand All @@ -36,6 +39,9 @@ updates:
commit-message:
prefix: "chore"
groups:
all-npm:
all-npm-minor-patch:
patterns:
- "*"
update-types:
- "minor"
- "patch"
Comment on lines +42 to +47
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Similar to the dashboard configuration, using a more specific group name here (e.g., showcase-npm-minor-patch) would help distinguish these grouped updates from those in other directories when viewing the repository's pull request list.

      showcase-npm-minor-patch:
        patterns:
          - "*"
        update-types:
          - "minor"
          - "patch"