Files
deepagentsjs/.github/dependabot.yml
T
langsmith-fleet[bot] a8c190cfd5 ci: cover example Dockerfile with Dependabot (#681)
## Summary

- Add Dependabot Docker coverage for the maintained async subagent
server example Dockerfile.
- Leave npm coverage unchanged because the root pnpm workspace entry
already covers workspace package manifests through the root lockfile.
- Do not add release/N-1 `target-branch` entries; that policy applies
only to `langchainplus` and `langgraph-api`.

## Test Plan

- [x] Compared dependency roots on `main` against
`.github/dependabot.yml` coverage.
- [x] Parsed `.github/dependabot.yml` with Ruby YAML.
- [x] Ran `git diff --check`.

Co-authored-by: Langster <john@langchain.dev>
2026-07-14 20:58:17 -07:00

68 lines
1.4 KiB
YAML

version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: monthly
open-pull-requests-limit: 10
versioning-strategy: increase-if-necessary
groups:
patch-deps-updates-main:
patterns:
- "*"
update-types:
- "patch"
minor-deps-updates-main:
patterns:
- "*"
update-types:
- "minor"
major-deps-updates-main:
patterns:
- "*"
update-types:
- "major"
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: monthly
open-pull-requests-limit: 10
groups:
patch-deps-updates:
patterns:
- "*"
update-types:
- "patch"
minor-deps-updates:
patterns:
- "*"
update-types:
- "minor"
major-deps-updates:
patterns:
- "*"
update-types:
- "major"
- package-ecosystem: docker
directory: "/examples/async-subagent-server"
schedule:
interval: monthly
open-pull-requests-limit: 10
groups:
patch-deps-updates-docker:
patterns:
- "*"
update-types:
- "patch"
minor-deps-updates-docker:
patterns:
- "*"
update-types:
- "minor"
major-deps-updates-docker:
patterns:
- "*"
update-types:
- "major"