From 07d3b1fba25b38c6df379d657350b3848dba5562 Mon Sep 17 00:00:00 2001 From: Arun Tyagi Date: Tue, 24 Feb 2026 11:59:31 +0530 Subject: [PATCH] CHANGE: @W-21345314@ - shift automated-release-tasks to earlier IST time - automated-release-tasks.yml: Changed from 12:00 PM UTC (5:30 PM IST) to 4:30 AM UTC (10:00 AM IST) Note: daily-smoke-tests.yml and heartbeat-tests.yml are already scheduled for IST business hours: - daily-smoke-tests: 3:30 AM UTC (9:00 AM IST) - heartbeat-tests: 3:30/6:30/10:30 AM UTC (9:00 AM/12:00 PM/4:00 PM IST) --- .github/workflows/automated-release-tasks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/automated-release-tasks.yml b/.github/workflows/automated-release-tasks.yml index 2e4d5b849..a9ca5e8cc 100644 --- a/.github/workflows/automated-release-tasks.yml +++ b/.github/workflows/automated-release-tasks.yml @@ -3,8 +3,8 @@ on: schedule: # Cron syntax is "minute[0-59] hour[0-23] date[1-31] month[1-12] day[0-6]". '*' is 'any value,' and multiple values # can be specified with comma-separated lists. All times are UTC. - # So this expression means "run at 12 PM UTC, every Friday". - - cron: "0 12 * * 5" + # So this expression means "run at 4:30 AM UTC (10:00 AM IST), every Friday". + - cron: "30 4 * * 5" jobs: # Depending on circumstances, we may want to exit early instead of running the workflow to completion.