From c47acab386d16d8b83ac1c606c78573414fd700c Mon Sep 17 00:00:00 2001 From: Matt Raible Date: Wed, 20 Aug 2025 21:24:39 -0400 Subject: [PATCH] Schedule dependabot to run Monday 8am Mountain Time - Add explicit schedule timing: Monday at 14:00 UTC (8am MT) - Ensures consistent weekly runs instead of varying based on manual triggers - Applied to all package ecosystems in the project --- .github/dependabot.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3b297ac..8e06cf4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,12 +9,18 @@ updates: - "/functions/servicenow/" - "/functions/user-management/" schedule: - interval: weekly + interval: "weekly" + day: "monday" + time: "14:00" + timezone: "UTC" - package-ecosystem: npm directory: "/ui/extensions/hello/" open-pull-requests-limit: 10 schedule: - interval: weekly + interval: "weekly" + day: "monday" + time: "14:00" + timezone: "UTC" groups: react: patterns: @@ -23,4 +29,7 @@ updates: - package-ecosystem: github-actions directory: "/" schedule: - interval: weekly + interval: "weekly" + day: "monday" + time: "14:00" + timezone: "UTC"