From 2498bb60b67a348031edc057d17ba0f5acdc53a0 Mon Sep 17 00:00:00 2001 From: liuyhwangyh Date: Fri, 2 Jun 2023 16:01:36 +0800 Subject: [PATCH] fix cron format issue --- .github/workflows/daily_regression.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/daily_regression.yaml b/.github/workflows/daily_regression.yaml index 6114a82a..0500b61c 100644 --- a/.github/workflows/daily_regression.yaml +++ b/.github/workflows/daily_regression.yaml @@ -3,7 +3,7 @@ name: daily_regression on: schedule: # * is a special character in YAML so you have to quote this string - - cron: '0 0 * * * *' + - cron: '0 0 * * *' concurrency: group: ${{ github.workflow }}-${{ github.ref }}