From e3b1353b3fd14cc18cd80b51cba32a4cfa6c56a6 Mon Sep 17 00:00:00 2001
From: Ryan Laurie <30528226+iethree@users.noreply.github.com>
Date: Mon, 4 Mar 2024 09:21:03 -0700
Subject: [PATCH] Don't send release reminders on weekends (#39522)

---
 .github/workflows/release-status.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/release-status.yml b/.github/workflows/release-status.yml
index 569f24e98d4..54d1be467a1 100644
--- a/.github/workflows/release-status.yml
+++ b/.github/workflows/release-status.yml
@@ -3,7 +3,7 @@ name: Release Status Check
 on:
   workflow_dispatch:
   schedule:
-    - cron: '0 13 * * *' # every day at 8am US eastern time
+    - cron: '0 11 * * 1-5' # every weekday at 6am US eastern time
 
 jobs:
   check-release-status:
-- 
GitLab