-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdependabot.yml
More file actions
68 lines (67 loc) · 1.73 KB
/
dependabot.yml
File metadata and controls
68 lines (67 loc) · 1.73 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
# Dependabot configuration for automated dependency updates
version: 2
updates:
# Updates for GitHub Actions used in workflows
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "master"
schedule:
interval: "daily"
time: "09:00"
timezone: "UTC"
# Set custom labels on pull requests
labels:
- "dependencies"
- "security"
- "automated"
- "maintenance"
# Limit the number of open PRs
open-pull-requests-limit: 10
# Assign reviewers automatically
reviewers:
- "EngineScript"
# Create a group of updates for all actions
groups:
actions:
patterns:
- "*"
update-types:
- "minor"
- "patch"
# Updates for Composer dependencies (PHP packages)
- package-ecosystem: "composer"
directory: "/"
target-branch: "master"
schedule:
interval: "daily"
time: "09:00"
timezone: "UTC"
# Set custom labels on pull requests
labels:
- "dependencies"
- "php"
- "automated"
- "maintenance"
# Limit the number of open PRs
open-pull-requests-limit: 10
# Assign reviewers automatically
reviewers:
- "EngineScript"
# Group updates by dependency type
groups:
# Group all dev dependencies together
dev-dependencies:
dependency-type: "development"
update-types:
- "minor"
- "patch"
# Group production dependencies (if any are added later)
production-dependencies:
dependency-type: "production"
update-types:
- "minor"
- "patch"
# Allow updates to all dependency types
allow:
- dependency-type: "direct"
- dependency-type: "indirect"