From 95520bad6780d26c33a7bc286ac85de67022af76 Mon Sep 17 00:00:00 2001 From: Pankaj Singh <98807258+pankajastro@users.noreply.github.com> Date: Thu, 25 Jan 2024 12:24:28 +0530 Subject: [PATCH] Disable the Benchmark schedule job (#2100) I'm thinking of disabling the scheduled benchmark job since we are not monitoring it at the moment. If needed still we will be able to run it on label --- .github/workflows/ci-benchmark.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci-benchmark.yaml b/.github/workflows/ci-benchmark.yaml index cd834204a..e8fb9ec04 100644 --- a/.github/workflows/ci-benchmark.yaml +++ b/.github/workflows/ci-benchmark.yaml @@ -3,8 +3,6 @@ on: pull_request: types: - labeled - schedule: - - cron: '0 0 * * 1' # This allows a subsequently queued workflow run to interrupt and cancel previous runs concurrency: @@ -14,7 +12,6 @@ concurrency: jobs: Run-Benchmark: if: >- - (github.event_name == 'schedule' && github.event.schedule != '0 0 * * *') || ( github.event.label.name == 'run_benchmark' && github.event.name != 'pull_request_target'