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

updates:
# Group updates into a single PR per workspace package
- package-ecosystem: npm
directory: "/packages/docker"
schedule:
interval: weekly
groups:
all-dependencies:
patterns:
- "*"
- package-ecosystem: npm
directory: "/packages/hooklib"
schedule:
interval: weekly
groups:
all-dependencies:
patterns:
- "*"
- package-ecosystem: npm
directory: "/packages/k8s"
schedule:
interval: weekly
groups:
all-dependencies:
patterns:
- "*"
Comment on lines +3 to +28
Copy link

Copilot AI Nov 27, 2025

Choose a reason for hiding this comment

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

The Dependabot configuration is missing an entry for the root directory ("/"). The root package.json contains multiple dependencies and devDependencies (such as eslint, prettier, typescript, @types packages, etc.) that should also be monitored for updates. Consider adding a configuration block for the root directory:

- package-ecosystem: npm
  directory: "/"
  schedule:
    interval: weekly
  groups:
    all-dependencies:
      patterns:
        - "*"

Copilot uses AI. Check for mistakes.
Loading