From 0c43058e5894cc6d1a1d32a9ca5f695c6b5aa79f Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Wed, 28 Jan 2026 01:02:42 +0100 Subject: [PATCH] CI: Run jobs on schedule each night to protect against regressions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This creates a stronger signal to be picked up by downstream monitoring components driven by `cratedb-github-summary`. Co-authored-by: Mathias Fußenegger --- .github/workflows/main.yml | 13 ++++++++++++- .github/workflows/test.yml | 7 +++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fb9bf55..504ada9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,17 @@ --- name: CrateDB Docker images test -on: [push] +on: + pull_request: ~ + push: + branches: + - master + workflow_dispatch: + schedule: + - cron: '0 4 * * *' + +concurrency: + cancel-in-progress: true + group: ${{ github.workflow }}-${{ github.ref }} jobs: multi-arch-build: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4ca9d1c..a88f2e3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,6 +5,13 @@ on: push: branches: - master + workflow_dispatch: + schedule: + - cron: '0 4 * * *' + +concurrency: + cancel-in-progress: true + group: ${{ github.workflow }}-${{ github.ref }} jobs: test: