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
25 changes: 11 additions & 14 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -1,34 +1,31 @@
version: 2
multi-ecosystem-groups:
all:
schedule:
interval: 'weekly'
updates:
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'
multi-ecosystem-group: 'all'
- package-ecosystem: 'devcontainers'
directory: '/'
schedule:
interval: 'weekly'
multi-ecosystem-group: 'all'
# Node.js dependencies
- package-ecosystem: 'npm'
directory: '/nodejs'
schedule:
interval: 'weekly'
multi-ecosystem-group: 'all'
- package-ecosystem: 'npm'
directory: '/test/harness'
schedule:
interval: 'weekly'
multi-ecosystem-group: 'all'
# Python dependencies
- package-ecosystem: 'pip'
directory: '/python'
schedule:
interval: 'weekly'
multi-ecosystem-group: 'all'
# Go dependencies
- package-ecosystem: 'gomod'
directory: '/go'
schedule:
interval: 'weekly'
multi-ecosystem-group: 'all'
# .NET dependencies
- package-ecosystem: 'nuget'
directory: '/dotnet'
schedule:
interval: 'weekly'
multi-ecosystem-group: 'all'
Comment on lines 7 to +31
Copy link

Copilot AI Feb 25, 2026

Choose a reason for hiding this comment

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

The removal of individual schedule configurations from each package ecosystem combined with the use of multi-ecosystem-group: 'all' may not work as intended. Each package ecosystem entry in Dependabot typically requires its own schedule configuration. Without individual schedules, Dependabot may not know when to check for updates for these ecosystems.

If the goal is to group updates together to reduce the number of PRs, consider using the groups feature properly (with schedules still defined per ecosystem) or explore other Dependabot configuration options like open-pull-requests-limit.

This issue also appears on line 2 of the same file.

See below for a potential fix:

    multi-ecosystem-group: 'all'
    schedule:
      interval: 'weekly'
  - package-ecosystem: 'devcontainers'
    directory: '/'
    multi-ecosystem-group: 'all'
    schedule:
      interval: 'weekly'
  # Node.js dependencies
  - package-ecosystem: 'npm'
    directory: '/nodejs'
    multi-ecosystem-group: 'all'
    schedule:
      interval: 'weekly'
  - package-ecosystem: 'npm'
    directory: '/test/harness'
    multi-ecosystem-group: 'all'
    schedule:
      interval: 'weekly'
  # Python dependencies
  - package-ecosystem: 'pip'
    directory: '/python'
    multi-ecosystem-group: 'all'
    schedule:
      interval: 'weekly'
  # Go dependencies
  - package-ecosystem: 'gomod'
    directory: '/go'
    multi-ecosystem-group: 'all'
    schedule:
      interval: 'weekly'
  # .NET dependencies
  - package-ecosystem: 'nuget'
    directory: '/dotnet'
    multi-ecosystem-group: 'all'
    schedule:
      interval: 'weekly'

Copilot uses AI. Check for mistakes.
Copy link
Contributor Author

Choose a reason for hiding this comment

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