forked from aicodingstack/aicodingstack.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependabot.yml
More file actions
60 lines (59 loc) · 1.3 KB
/
Copy pathdependabot.yml
File metadata and controls
60 lines (59 loc) · 1.3 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
version: 2
updates:
# npm dependencies
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "UTC"
open-pull-requests-limit: 10
reviewers:
- "aicodingstack/maintainers"
assignees:
- "aicodingstack/maintainers"
commit-message:
prefix: "chore(deps)"
include: "scope"
labels:
- "dependencies"
- "automated"
groups:
# Group minor and patch updates together
minor-and-patch:
patterns:
- "*"
update-types:
- "minor"
- "patch"
# Separate group for Next.js updates
nextjs:
patterns:
- "next"
- "react"
- "react-dom"
update-types:
- "minor"
- "patch"
# Separate group for dev dependencies
dev-dependencies:
dependency-type: "development"
update-types:
- "minor"
- "patch"
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "UTC"
open-pull-requests-limit: 5
commit-message:
prefix: "chore(ci)"
labels:
- "dependencies"
- "github-actions"
- "automated"