Skip to content

Commit 7d0e9de

Browse files
authored
chore(ts): add npm ecosystem to dependabot config (#7)
The TypeScript client + its dev toolchain live in pnpm-lock.yaml but Dependabot wasn't scanning them. Add an npm entry that groups minor/ patch updates and tags PRs with `ts-client` so they're easy to spot alongside the existing uv/actions/docker scans.
1 parent ad1dded commit 7d0e9de

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,26 @@ updates:
7373
commit-message:
7474
prefix: "chore(docker)"
7575
include: "scope"
76+
77+
# npm dependencies for the TypeScript client package.
78+
# Dependabot reads the workspace root's pnpm-lock.yaml automatically.
79+
- package-ecosystem: "npm"
80+
directory: "/"
81+
schedule:
82+
interval: "weekly"
83+
day: "monday"
84+
time: "09:00"
85+
timezone: "UTC"
86+
open-pull-requests-limit: 5
87+
labels:
88+
- "dependencies"
89+
- "npm"
90+
- "ts-client"
91+
groups:
92+
npm-minor-patch:
93+
update-types:
94+
- "minor"
95+
- "patch"
96+
commit-message:
97+
prefix: "chore(ts)"
98+
include: "scope"

0 commit comments

Comments
 (0)