From eb2701e0b27ce054241210b5fcddd218850b0d51 Mon Sep 17 00:00:00 2001 From: Li Wang Date: Wed, 4 Jun 2025 01:19:20 +0800 Subject: [PATCH] [CI] Remove workflow_dispatch and change schedule time (#1056) ### What this PR does / why we need it? - Remove workflow_dispatch - Change schedule time to 2:00 UTC+8 ### Does this PR introduce _any_ user-facing change? ### How was this patch tested? CI passed --------- Signed-off-by: wangli <858794774@qq.com> Co-authored-by: wangli <858794774@qq.com> --- .github/workflows/nightly_benchmarks.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nightly_benchmarks.yaml b/.github/workflows/nightly_benchmarks.yaml index 8a70c8d..780e9e2 100644 --- a/.github/workflows/nightly_benchmarks.yaml +++ b/.github/workflows/nightly_benchmarks.yaml @@ -20,9 +20,8 @@ name: 'Benchmarks / Performance' on: schedule: - # Run at 24:00 everyday - - cron: '00 16 * * *' - workflow_dispatch: + # Run at 02:00 everyday + - cron: '00 18 * * *' pull_request: types: [ labeled ]