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
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,23 @@ updates:
directory: '/'
schedule:
interval: 'daily'
groups:
github-dependencies:

Choose a reason for hiding this comment

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

medium

For clarity, it's better to use a group name that is specific to the package ecosystem. Using the same group name github-dependencies for bundler, github-actions, and pre-commit will result in pull requests with identical titles (e.g., 'Bump the github-dependencies group'), making it hard to distinguish between them. I suggest using a more descriptive name like bundler-dependencies here.

      bundler-dependencies:

patterns:
- '*'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'daily'
groups:
github-dependencies:

Choose a reason for hiding this comment

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

medium

To avoid confusion with other dependency groups and to generate more descriptive pull request titles, I suggest using a more specific name for this group, such as github-actions-dependencies.

      github-actions-dependencies:

patterns:
- '*'
- package-ecosystem: 'pre-commit'
directory: '/'
schedule:
interval: 'daily'
groups:
github-dependencies:

Choose a reason for hiding this comment

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

medium

To make the pull request titles for pre-commit updates more descriptive, I recommend changing the group name to something specific to this ecosystem, like pre-commit-hooks.

      pre-commit-hooks:

patterns:
- '*'