From 115c9dae3d2be03c981e93975393ba9210decfa7 Mon Sep 17 00:00:00 2001 From: shen yushi Date: Tue, 22 Oct 2024 12:12:17 +0800 Subject: [PATCH] fix slow test. (#2068) ### What problem does this PR solve? trigger slow test. --- .github/workflows/slow_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/slow_test.yml b/.github/workflows/slow_test.yml index a588c842a..e16019a6c 100644 --- a/.github/workflows/slow_test.yml +++ b/.github/workflows/slow_test.yml @@ -4,7 +4,7 @@ on: # Schedule the workflow to run at 00:30 UTC+8 every day # https://docs.github.com/zh/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#schedule schedule: - - cron: '30 16 * * *' # 00:30 - 8 = 16:30 + - cron: '30 10,18,2 * * *' # utc-8: 18:30, 2:30, 10:30 # The "create tags" trigger is specifically focused on the creation of new tags, while the "push tags" trigger is activated when tags are pushed, including both new tag creations and updates to existing tags. create: tags: @@ -20,7 +20,7 @@ on: # https://docs.github.com/en/actions/using-jobs/using-concurrency concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true +# cancel-in-progress: true jobs: slow_tests: