From d8305abb3e71cec80027d519af368553916150f3 Mon Sep 17 00:00:00 2001 From: Pepijn Date: Wed, 8 Apr 2026 20:06:02 +0200 Subject: [PATCH] feat(ci): add monthly schedule trigger for benchmark tests Runs on the 1st of every month at 02:00 UTC in addition to the existing push/PR and manual dispatch triggers. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/benchmark_tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/benchmark_tests.yml b/.github/workflows/benchmark_tests.yml index a48cfa556..a1e156222 100644 --- a/.github/workflows/benchmark_tests.yml +++ b/.github/workflows/benchmark_tests.yml @@ -25,6 +25,10 @@ on: # Run manually from the Actions tab workflow_dispatch: + # Run on the 1st of every month at 02:00 UTC. + schedule: + - cron: "0 2 1 * *" + push: branches: - feat/benchmark-ci