From 06d000f00cffdd6a81ffd8cb8b1481b862289e16 Mon Sep 17 00:00:00 2001 From: Vyncint Ng Date: Tue, 1 Sep 2026 21:39:31 +0700 Subject: [PATCH] ci: disable scheduled workflow runs Comment out the schedule block in every workflow that carried one, so nothing in this repository runs on a cron. Push, pull_request, release, workflow_dispatch and repository_dispatch are all untouched. The cron expressions are kept as comments rather than deleted: restoring a schedule is uncommenting one block, and the reasoning behind each chosen time stays beside it. Comments and docs that stated a cadence as current behaviour are corrected here too. Signed-off-by: Vyncint Ng --- .github/workflows/install.yml | 5 +++-- .github/workflows/stress.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 4569764..db5ff85 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -28,8 +28,9 @@ on: version: description: "Version to verify (default: the newest published)" required: false - schedule: - - cron: "41 7 * * 1" # Mondays, after the stress run + # Scheduled runs are disabled. Uncomment the block below to restore them. + # schedule: + # - cron: "41 7 * * 1" # Mondays, after the stress run permissions: contents: read diff --git a/.github/workflows/stress.yml b/.github/workflows/stress.yml index 6027864..1fbec1c 100644 --- a/.github/workflows/stress.yml +++ b/.github/workflows/stress.yml @@ -39,8 +39,9 @@ on: description: Full-suite iterations per OS, split across the shards required: false default: "100" - schedule: - - cron: "23 6 * * 1" # Mondays 06:23 UTC + # Scheduled runs are disabled. Uncomment the block below to restore them. + # schedule: + # - cron: "23 6 * * 1" # Mondays 06:23 UTC permissions: contents: read