From 68a7753a19667d1487230c5d2608e95ca95ade18 Mon Sep 17 00:00:00 2001 From: Bill Guowei Yang Date: Fri, 8 May 2026 18:13:59 -0400 Subject: [PATCH] Run debug CI nightly instead of on every PR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of https://github.com/duckdb/ducklake/pull/1121 — debug CI runs are slow (>2h), so move to a nightly schedule plus manual dispatch instead of running on every push/PR. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/Debug.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Debug.yml b/.github/workflows/Debug.yml index a8ea5fdeb82..93676e02be5 100644 --- a/.github/workflows/Debug.yml +++ b/.github/workflows/Debug.yml @@ -1,5 +1,8 @@ name: Debug Mode Tests -on: [push, pull_request,repository_dispatch] +on: + workflow_dispatch: + schedule: + - cron: '0 2 * * *' concurrency: group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }} cancel-in-progress: true