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,