-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Add dependabot to automatically update dependencies #2885
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f03a4ed
6ae9f1b
a30481d
0af7f3f
85e1a4e
28fb058
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| version: 2 | ||
| updates: | ||
| # Root npm dependencies | ||
| - package-ecosystem: "npm" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| groups: | ||
| npm-dependencies: | ||
| patterns: | ||
| - "*" | ||
|
|
||
| # TypeScript/Node.js servers | ||
| - package-ecosystem: "npm" | ||
| directory: "/src/everything" | ||
| schedule: | ||
| interval: "weekly" | ||
| groups: | ||
| npm-dependencies: | ||
| patterns: | ||
| - "*" | ||
|
|
||
| - package-ecosystem: "npm" | ||
| directory: "/src/filesystem" | ||
| schedule: | ||
| interval: "weekly" | ||
| groups: | ||
| npm-dependencies: | ||
| patterns: | ||
| - "*" | ||
|
|
||
| - package-ecosystem: "npm" | ||
| directory: "/src/memory" | ||
| schedule: | ||
| interval: "weekly" | ||
| groups: | ||
| npm-dependencies: | ||
| patterns: | ||
| - "*" | ||
|
|
||
| - package-ecosystem: "npm" | ||
| directory: "/src/sequentialthinking" | ||
| schedule: | ||
| interval: "weekly" | ||
| groups: | ||
| npm-dependencies: | ||
| patterns: | ||
| - "*" | ||
|
|
||
| # Python servers | ||
| - package-ecosystem: "pip" | ||
| directory: "/src/fetch" | ||
| schedule: | ||
| interval: "weekly" | ||
| groups: | ||
| python-dependencies: | ||
|
||
| patterns: | ||
| - "*" | ||
|
|
||
| - package-ecosystem: "pip" | ||
| directory: "/src/git" | ||
| schedule: | ||
| interval: "weekly" | ||
| groups: | ||
| python-dependencies: | ||
|
||
| patterns: | ||
| - "*" | ||
|
|
||
| - package-ecosystem: "pip" | ||
| directory: "/src/time" | ||
| schedule: | ||
| interval: "weekly" | ||
| groups: | ||
| python-dependencies: | ||
olaservo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| patterns: | ||
| - "*" | ||
|
|
||
| # GitHub Actions | ||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" | ||
| groups: | ||
| github-actions: | ||
| patterns: | ||
| - "*" | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All npm package ecosystems use the same group name 'npm-dependencies', which will result in separate PRs per directory rather than a single grouped PR as described in the PR description. To achieve the stated goal of '1 PR for all npm updates', use a unique group name (e.g., 'all-npm-dependencies') consistently across all npm configurations, or consider Dependabot's repository-level grouping feature if available.