From 94eed25923f2c51a02200c4213e71c8bd9c20738 Mon Sep 17 00:00:00 2001 From: zetavg Date: Sun, 19 Nov 2023 04:27:11 +0800 Subject: [PATCH] CI: build on every Monday --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f877414..8ec32465 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,9 +15,11 @@ on: release: types: [published] schedule: - # First Sunday of every month - # See: https://crontab.guru/#0_0_1-7_*_*/7 - - cron: '0 0 1-7 * */7' # https://stackoverflow.com/a/73826599 + # Every Monday + - cron: 0 0 * * 1 + # # First Sunday of every month + # # See: https://crontab.guru/#0_0_1-7_*_*/7 + # - cron: '0 0 1-7 * */7' # https://stackoverflow.com/a/73826599 concurrency: group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.ref }}