From 0402453c3d273ff5df23da2d84568ab284fb576b Mon Sep 17 00:00:00 2001 From: Gaurav Sharma <223556219+Copilot@users.noreply.github.com> Date: Mon, 20 Jul 2026 18:44:09 +0530 Subject: [PATCH] CHORE: move nightly build schedule to 4:30 AM IST Shift the daily scheduled build from 12:30 AM IST to 4:30 AM IST (cron 0 19 -> 0 23 UTC) in build-release-package-pipeline.yml. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- OneBranchPipelines/build-release-package-pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OneBranchPipelines/build-release-package-pipeline.yml b/OneBranchPipelines/build-release-package-pipeline.yml index 3bd789e8..5f999289 100644 --- a/OneBranchPipelines/build-release-package-pipeline.yml +++ b/OneBranchPipelines/build-release-package-pipeline.yml @@ -36,12 +36,12 @@ pr: include: - main -# Schedule: Daily builds at 12:30 AM IST (19:00 UTC previous day) +# Schedule: Daily builds at 4:30 AM IST (23:00 UTC previous day) # Cron format: minute hour day month weekday # always:true = run even if no code changes schedules: - - cron: "0 19 * * *" - displayName: Daily run at 12:30 AM IST + - cron: "0 23 * * *" + displayName: Daily run at 4:30 AM IST branches: include: - main