From 8c37878853b23f9a70fc54beae196309b25cc2fd Mon Sep 17 00:00:00 2001 From: tellet-q Date: Fri, 3 Jan 2025 12:49:32 +0100 Subject: [PATCH] Only run runLoadTimeBenchmark once per day --- .github/workflows/continuous-benchmark.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-benchmark.yaml b/.github/workflows/continuous-benchmark.yaml index 8a25bf69..095f3abb 100644 --- a/.github/workflows/continuous-benchmark.yaml +++ b/.github/workflows/continuous-benchmark.yaml @@ -185,7 +185,7 @@ jobs: runLoadTimeBenchmark: runs-on: ubuntu-latest needs: runBenchmark - if: ${{ always() }} + if: ${{ always() && (github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch' || github.event.schedule == '0 0 * * *') }} steps: - uses: actions/checkout@v3 - uses: webfactory/ssh-agent@v0.8.0