From 9cd9732370ad3f78b62d55589bf71724c9e58dde Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:40:41 -0400 Subject: [PATCH] Test reverting github benchmarks change [skip benchmarks] --- .github/workflows/Benchmark.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/Benchmark.yml b/.github/workflows/Benchmark.yml index ca3c3c58..c85d940b 100644 --- a/.github/workflows/Benchmark.yml +++ b/.github/workflows/Benchmark.yml @@ -31,13 +31,7 @@ on: jobs: benchmark: - if: | - (github.event_name != 'pull_request' || - github.event.pull_request.head.repo.full_name == github.repository) && - (contains(github.event.head_commit.message, '[only benchmarks]') || - (!contains(github.event.head_commit.message, '[only') && - !contains(github.event.head_commit.message, '[skip benchmarks]') && - github.event.pull_request.draft == false)) + if: ${{ (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && (contains(github.event.head_commit.message, '[only benchmarks]') || !contains(github.event.head_commit.message, '[only') && !contains(github.event.head_commit.message, '[skip benchmarks]') && github.event.pull_request.draft == false) }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4