-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdependabot.yml
More file actions
44 lines (42 loc) · 920 Bytes
/
dependabot.yml
File metadata and controls
44 lines (42 loc) · 920 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
42
43
44
version: 2
updates:
# NuGet packages
- package-ecosystem: nuget
directory: /
schedule:
interval: weekly
day: monday
open-pull-requests-limit: 10
labels:
- dependencies
- nuget
commit-message:
prefix: "deps(nuget)"
groups:
# Group minor/patch updates to reduce PR noise
microsoft:
patterns:
- "Microsoft.*"
update-types:
- minor
- patch
testing:
patterns:
- "xunit*"
- "Moq*"
- "coverlet*"
update-types:
- minor
- patch
# GitHub Actions
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
day: monday
open-pull-requests-limit: 5
labels:
- dependencies
- github-actions
commit-message:
prefix: "deps(actions)"