From d86dfaf6356fc3b7b0792d44ee000d7905b18da6 Mon Sep 17 00:00:00 2001 From: Declan Smith Date: Sat, 27 Jun 2026 19:58:21 +1000 Subject: [PATCH] fix(dependabot): adjust schedule to weekly with specific timezone --- .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 9ed67f0b..afbdd266 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 4a9ec82d..3637db94 100644 --- a/_atom/IBuild.cs +++ b/_atom/IBuild.cs @@ -289,7 +289,10 @@ internal interface IBuild : IWorkflowBuildDefinition, }, Schedule = new() { - Interval = ScheduleInterval.Daily, + Interval = ScheduleInterval.Weekly, + Day = ScheduleDay.Saturday, + Time = "00:00", + Timezone = "Australia/Brisbane", }, TargetBranch = "main", OpenPullRequestsLimit = 10,