Skip to content
Draft
Changes from 1 commit
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
18 changes: 12 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
version: 2

multi-ecosystem-groups:
minor-and-patch:
schedule:
interval: 'quarterly'

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

Expand All @@ -21,8 +27,8 @@ updates:
include: 'scope'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'monthly'
patterns: ['*']
multi-ecosystem-groups: 'minor-and-patch'
groups:

Choose a reason for hiding this comment

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

This group should also be removed

github-actions:
update-types:
Expand Down