From 0cf4bb055719ba9438e5843af7f87dbf3a1c4262 Mon Sep 17 00:00:00 2001 From: Ashton Date: Sun, 30 Aug 2026 10:21:00 +1000 Subject: [PATCH 1/3] Added cooldown to dependabot --- .github/dependabot.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3a1fb12..6f07454 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,14 +4,19 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - # Check for updates on the first Sunday of every month, 8PM UTC - interval: "cron" - cronjob: "0 20 * * sun#1" - + # Check for updates on Sunday, 8PM UTC + interval: "weekly" + day: "sunday" + time: "20:00" + cooldown: + default-days: 7 - package-ecosystem: "pre-commit" directory: "/" schedule: - # Check for updates on the first Sunday of every month, 8PM UTC - interval: "cron" - cronjob: "0 20 * * sun#1" + # Check for updates on Sunday, 8PM UTC + interval: "weekly" + day: "sunday" + time: "20:00" + cooldown: + default-days: 7 \ No newline at end of file From d3f89ca956e60da06ab7e153c001c1155d4e7a9c Mon Sep 17 00:00:00 2001 From: Ashton Date: Sun, 30 Aug 2026 10:30:45 +1000 Subject: [PATCH 2/3] fixed pre-commit end of file issue --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6f07454..9aa3832 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,4 +19,4 @@ updates: day: "sunday" time: "20:00" cooldown: - default-days: 7 \ No newline at end of file + default-days: 7 From c55818a3996e048d89150ab17738356e4321d3d4 Mon Sep 17 00:00:00 2001 From: Ashton Date: Sun, 30 Aug 2026 10:52:46 +1000 Subject: [PATCH 3/3] Remove changes to schedule, keep cooldown addition --- .github/dependabot.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9aa3832..ed6717e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,19 +4,17 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - # Check for updates on Sunday, 8PM UTC - interval: "weekly" - day: "sunday" - time: "20:00" + # Check for updates on the first Sunday of every month, 8PM UTC + interval: "cron" + cronjob: "0 20 * * sun#1" cooldown: default-days: 7 - package-ecosystem: "pre-commit" directory: "/" schedule: - # Check for updates on Sunday, 8PM UTC - interval: "weekly" - day: "sunday" - time: "20:00" + # Check for updates on the first Sunday of every month, 8PM UTC + interval: "cron" + cronjob: "0 20 * * sun#1" cooldown: default-days: 7