From 01cfc64f1c959a871e5d579286afe932a29c5036 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Werner?= Date: Mon, 26 Sep 2022 13:14:53 +0200 Subject: [PATCH] prevent v3 from affecting v2 benchmarks --- .github/workflows/benchmark.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 3a8ee2bf..9cc328ee 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -16,7 +16,8 @@ jobs: uses: actions/cache@v3 with: path: ./cache - key: ${{ runner.os }}-benchmark + # TODO: reactivate it later -> when v3 is the stable one + key: ${{ runner.os }}-benchmark-v3 - name: Save Benchmark Results uses: rhysd/github-action-benchmark@v1 with: @@ -25,4 +26,5 @@ jobs: github-token: ${{ secrets.BENCHMARK_TOKEN }} fail-on-alert: true comment-on-alert: true - auto-push: true + # TODO: reactivate it later -> when v3 is the stable one + auto-push: false