Skip to content

Commit 73d2960

Browse files
.NET: Update dependabot schedule (#12602)
### Motivation, Context and Description This PR updates the dependabot schedule to run twice a week instead of weekly, with one of the days being Sunday. The idea is that the dependabot infrastructure is less busy on weekends. This change should decrease the number of dependencies to update and potentially resolve the dependabot timeout issue. Additionally, the schedule for checking dependencies of github actions has been changed to Tuesday to avoid running on Monday, when the job for checking dependencies for samples is executed. Dependabot options - https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference
1 parent 1253cad commit 73d2960

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ updates:
99
- package-ecosystem: "nuget"
1010
directory: "dotnet/"
1111
schedule:
12-
interval: "weekly"
13-
day: "monday"
12+
interval: "cron"
13+
cronjob: "0 8 * * 4,0" # Every Thursday(4) and Sunday(0) at 8:00 UTC
1414
ignore:
1515
# For all System.* and Microsoft.Extensions/Bcl.* packages, ignore all major version updates
1616
- dependency-name: "System.*"
@@ -55,4 +55,4 @@ updates:
5555
directory: "/"
5656
schedule:
5757
interval: "weekly"
58-
day: "monday"
58+
day: "tuesday"

0 commit comments

Comments
 (0)