-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathdependabot.yml
More file actions
43 lines (41 loc) · 1.22 KB
/
dependabot.yml
File metadata and controls
43 lines (41 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Dependabot configuration for automated dependency updates and security alerts
# See: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
# Python dependencies
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "python"
commit-message:
prefix: "chore(deps)"
groups:
all-minor-patch:
patterns: ["*"]
update-types: ["minor", "patch"]
# JavaScript/Node dependencies
# Note: This project uses pnpm, but Dependabot uses "npm" ecosystem
# which automatically detects and reads pnpm-lock.yaml
- package-ecosystem: "npm"
directory: "/js"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "javascript"
commit-message:
prefix: "chore(deps)"
ignore:
# Pinned: breaking layout changes in v2
- dependency-name: "@dagrejs/dagre"
# Pinned: breaking API changes in v2
- dependency-name: "html2canvas-pro"
groups:
all-minor-patch:
patterns: ["*"]
update-types: ["minor", "patch"]