@@ -7,15 +7,54 @@ version: 2
77updates :
88 - package-ecosystem : " github-actions"
99 directory : " /"
10+ schedule :
11+ interval : " weekly"
12+ day : " wednesday"
13+ time : " 03:10"
14+ timezone : " Asia/Tokyo"
1015 groups :
11- github-actions-workflows :
16+ GitHub-Actions-Workflows :
1217 patterns :
1318 - " actions/*"
14- smdn-fundamentals-workflows :
19+ Smdn-Fundamentals-Workflows :
1520 patterns :
1621 - " smdn/Smdn.Fundamentals/*"
22+ ignore :
23+ - dependency-name : " actions/checkout"
24+ update-types :
25+ - " version-update:semver-minor"
26+ - " version-update:semver-patch"
27+ - package-ecosystem : " nuget"
28+ directory : " /"
1729 schedule :
18- interval : " weekly"
19- day : " wednesday"
20- time : " 03:10"
21- timezone : " Asia/Tokyo"
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