From 5d2960a1da5dacdcc2542493f2a659869f44a2f6 Mon Sep 17 00:00:00 2001 From: Declan Smith Date: Sun, 5 Jul 2026 15:03:35 +1000 Subject: [PATCH] Update Dependabot and IBuild schedule to run weekly on Saturdays at midnight (Australia/Brisbane) --- .github/dependabot.yml | 5 ++++- _atom/IBuild.cs | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9ed67f0..afbdd26 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,7 +9,10 @@ updates: - package-ecosystem: nuget directory: "/" schedule: - interval: daily + interval: weekly + day: saturday + time: "00:00" + timezone: Australia/Brisbane groups: nuget-deps: patterns: [ "*" ] diff --git a/_atom/IBuild.cs b/_atom/IBuild.cs index 2765606..1a5ee96 100644 --- a/_atom/IBuild.cs +++ b/_atom/IBuild.cs @@ -432,7 +432,10 @@ await UnlistPrereleasesBelowVersionForPackages(NugetFeed, }, Schedule = new() { - Interval = ScheduleInterval.Daily, + Interval = ScheduleInterval.Weekly, + Day = ScheduleDay.Saturday, + Time = "00:00", + Timezone = "Australia/Brisbane", }, TargetBranch = "main", OpenPullRequestsLimit = 10,