Skip to content

Commit 62d2098

Browse files
committed
Add Dependabot config for npm and GitHub Actions
1 parent 0c48b37 commit 62d2098

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Dependabot config for db-analyzer-postgres
2+
# Docs: https://docs.github.com/code-security/dependabot/dependabot-version-updates
3+
4+
version: 2
5+
updates:
6+
# ── npm (pnpm) dependencies from package.json ────────────────
7+
- package-ecosystem: "npm"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
day: "monday"
12+
time: "08:00"
13+
timezone: "Europe/Chisinau"
14+
open-pull-requests-limit: 10
15+
labels:
16+
- "dependencies"
17+
groups:
18+
dev-tools:
19+
patterns:
20+
- "@biomejs/*"
21+
- "@types/*"
22+
- "ts-node"
23+
- "typescript"
24+
update-types:
25+
- "minor"
26+
- "patch"
27+
runtime-minor-patch:
28+
patterns:
29+
- "@inquirer/*"
30+
- "pg"
31+
update-types:
32+
- "minor"
33+
- "patch"
34+
35+
# ── GitHub Actions ───────────────────────────────────────────
36+
- package-ecosystem: "github-actions"
37+
directory: "/"
38+
schedule:
39+
interval: "weekly"
40+
day: "monday"
41+
time: "08:00"
42+
timezone: "Europe/Chisinau"
43+
open-pull-requests-limit: 5
44+
labels:
45+
- "dependencies"
46+
- "github-actions"

0 commit comments

Comments
 (0)