@@ -7,18 +7,54 @@ version: 2
77updates :
88 - package-ecosystem : " github-actions"
99 directory : " /"
10- groups :
11- github-actions-workflows :
12- patterns :
13- - " actions/*"
14- smdn-fundamentals-workflows :
15- patterns :
16- - " smdn/Smdn.Fundamentals/*"
1710 schedule :
1811 interval : " weekly"
1912 day : " wednesday"
2013 time : " 03:18"
2114 timezone : " Asia/Tokyo"
15+ groups :
16+ GitHub-Actions-Workflows :
17+ patterns :
18+ - " actions/*"
19+ Smdn-Fundamentals-Workflows :
20+ patterns :
21+ - " smdn/Smdn.Fundamentals/*"
2222 ignore :
2323 - dependency-name : " actions/checkout"
24- update-types : ["version-update:semver-patch"]
24+ update-types :
25+ - " version-update:semver-minor"
26+ - " version-update:semver-patch"
27+ - package-ecosystem : " nuget"
28+ directory : " /"
29+ schedule :
30+ interval : " monthly"
31+ groups :
32+ Smdn-MSBuild-ProjectAssets :
33+ patterns :
34+ - " Smdn.MSBuild.ProjectAssets.Common"
35+ - " Smdn.MSBuild.ProjectAssets.Library"
36+ NUnit :
37+ patterns :
38+ - " NUnit*"
39+ ignore :
40+ # For "Smdn.*", only major updates should be reported.
41+ - dependency-name : " Smdn.*"
42+ update-types :
43+ - " version-update:semver-minor"
44+ - " version-update:semver-patch"
45+ # For NUnit packages, only major updates should be reported.
46+ - dependency-name : " NUnit*"
47+ update-types : # major updates only
48+ - " version-update:semver-minor"
49+ - " version-update:semver-patch"
50+ # For Microsoft's extension packages, manually update them, so ignore all of them.
51+ - dependency-name : " Microsoft.Extensions.*"
52+ update-types : # ignore all updates
53+ - " version-update:semver-major"
54+ - " version-update:semver-minor"
55+ - " version-update:semver-patch"
56+ # For other packages, only major updates should be reported.
57+ - dependency-name : " *"
58+ update-types : # major updates only
59+ - " version-update:semver-minor"
60+ - " version-update:semver-patch"
0 commit comments