From 0e556eca15d9972f0a5f94cec1ce75bd20ba437a Mon Sep 17 00:00:00 2001 From: John McLear Date: Wed, 1 Apr 2026 19:03:19 +0100 Subject: [PATCH] Move load test to daily schedule instead of every push (#7425) Load tests are slow and don't need to run on every push. Schedule daily at 08:00 UTC with manual trigger option. Co-authored-by: Claude Opus 4.6 (1M context) --- .github/workflows/load-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/load-test.yml b/.github/workflows/load-test.yml index f590dd931..46a960aab 100644 --- a/.github/workflows/load-test.yml +++ b/.github/workflows/load-test.yml @@ -1,9 +1,9 @@ name: "Loadtest" on: - push: - paths-ignore: - - "doc/**" + schedule: + - cron: '0 8 * * *' # Daily at 08:00 UTC + workflow_dispatch: # Allow manual trigger permissions: contents: read