-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdependabot.yml
More file actions
41 lines (40 loc) · 926 Bytes
/
dependabot.yml
File metadata and controls
41 lines (40 loc) · 926 Bytes
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
version: 2
updates:
# NPM dependency updates
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "03:00"
open-pull-requests-limit: 10
reviewers:
- "andrew-mayorov"
labels:
- "dependencies"
- "npm"
commit-message:
prefix: "chore"
prefix-development: "chore"
include: "scope"
allow:
- dependency-type: "direct"
ignore:
# Ignore major version updates - review manually
- dependency-name: "@angular/*"
update-types: ["version-update:semver-major"]
# GitHub Actions updates
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "04:00"
open-pull-requests-limit: 5
reviewers:
- "andrew-mayorov"
labels:
- "ci"
- "github-actions"
commit-message:
prefix: "ci"