From ca6830af9fca4f243e21719032178e4f8500f494 Mon Sep 17 00:00:00 2001 From: csh Date: Thu, 20 Aug 2026 15:26:03 +0800 Subject: [PATCH] :wrench: chore(ci): move daily thirdparty poll to 06:00 Beijing time Gitea Actions evaluates cron in UTC, so 22:00 UTC lands at 06:00 the next day in UTC+8. The previous 03:17 UTC fired at 11:17 Beijing time, in the middle of the working day. The schedule triggers Prepare, and update-thirdparty-skills runs off its workflow_run completion, so moving Prepare moves the whole chain. Co-Authored-By: Claude Fable 5 --- .gitea/workflows/prepare.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/prepare.yml b/.gitea/workflows/prepare.yml index d009a1d2..27e0a968 100644 --- a/.gitea/workflows/prepare.yml +++ b/.gitea/workflows/prepare.yml @@ -14,8 +14,8 @@ on: - main workflow_dispatch: schedule: - # thirdparty 快照每日轮询:Prepare 定时成功后,update-thirdparty-skills 通过 workflow_run 触发。 - - cron: "17 3 * * *" + # 北京时间(UTC+8)每日 06:00;Prepare 成功后由 workflow_run 触发 thirdparty 快照更新。 + - cron: "0 22 * * *" concurrency: group: prepare-${{ github.repository }}