From b859356aac5afb8628a4a922508560ff20275031 Mon Sep 17 00:00:00 2001 From: Michael Vorburger Date: Sat, 28 Oct 2023 16:50:02 +0200 Subject: [PATCH] Run GitHub Action Workflow CI once a week on schedule --- .github/workflows/go.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 7dbc649d8..bb8ccd79f 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,9 +5,11 @@ on: branches: [ master ] pull_request: branches: [ master ] + schedule: + # Run once a week (even if no new code or PRs) to detect random regressions + - cron: '12 13 * * 2' jobs: - build: runs-on: ubuntu-latest timeout-minutes: 5