-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathdependabot.yml
More file actions
85 lines (81 loc) · 1.8 KB
/
Copy pathdependabot.yml
File metadata and controls
85 lines (81 loc) · 1.8 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
version: 2
updates:
# Dashboard (frontend) npm dependencies
- package-ecosystem: "npm"
directory: "/dashboard"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "UTC"
open-pull-requests-limit: 10
labels:
- "dependencies"
- "frontend"
commit-message:
prefix: "chore(dashboard)"
groups:
react:
patterns:
- "react"
- "react-dom"
- "@types/react"
- "@types/react-dom"
testing:
patterns:
- "@testing-library/*"
- "jest"
- "jest-*"
- "ts-jest"
- "@types/jest*"
typescript-eslint:
patterns:
- "@typescript-eslint/*"
- "eslint*"
- "typescript"
vite:
patterns:
- "vite"
- "@vitejs/*"
# Listener npm dependencies
- package-ecosystem: "npm"
directory: "/listener"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "UTC"
open-pull-requests-limit: 10
labels:
- "dependencies"
- "listener"
commit-message:
prefix: "chore(listener)"
# Rust/Cargo contract dependencies
- package-ecosystem: "cargo"
directory: "/contract"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "UTC"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "contract"
commit-message:
prefix: "chore(contract)"
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "UTC"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "github-actions"
commit-message:
prefix: "chore(ci)"