Skip to content
Draft
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
34 changes: 19 additions & 15 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,34 @@
version: 2

multi-ecosystem-groups:
minor-and-patch:
schedule:
interval: 'quarterly'
commit-message:
prefix: 'fix'
prefix-development: 'build'
include: 'scope'

updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'monthly'
patterns: ['*']
multi-ecosystem-group: 'minor-and-patch'
groups:
production-dependencies:
production:
dependency-type: 'production'
update-types:
- minor
- patch
development-dependencies:
development:
dependency-type: 'development'
update-types:
- minor
Comment on lines 17 to 26
Copy link

@robaiken robaiken Aug 13, 2025

Choose a reason for hiding this comment

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

You can't nest groups inside multi-ecosystem configurations. The update-types and dependency-type settings need to be moved up to the same level as package-ecosystem, not nested within the groups section

- patch
commit-message:
prefix: 'fix'
prefix-development: 'build'
include: 'scope'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'monthly'
groups:
github-actions:
update-types:
- minor
- patch
patterns: ['*']
multi-ecosystem-groups: 'minor-and-patch'
update-types:
- minor
- patch