From c0771ddcd68a4e98c7cbffeb6975afb3dd5ada18 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Mon, 17 Apr 2023 09:09:29 +0200 Subject: [PATCH] Turn off benchmakrs comment on each PR --- .github/workflows/rust.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ad90d5219f7e..f7b41684dc8c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -38,6 +38,7 @@ permissions: contents: write jobs: + # See the benchmarks at https://ref.rerun.io/dev/bench/ rs-benchmarks: name: Rust Criterion benchmarks @@ -76,6 +77,7 @@ jobs: -- --output-format=bencher | tee output.txt - name: Store benchmark result + # https://github.com/benchmark-action/github-action-benchmark uses: benchmark-action/github-action-benchmark@v1 with: name: Rust Benchmark @@ -87,7 +89,7 @@ jobs: comment-on-alert: true alert-threshold: "150%" fail-on-alert: true - comment-always: true + comment-always: false # Generates too much GitHub notification spam # Save, results and push to GitHub only on main save-data-file: ${{ github.ref == 'refs/heads/main' }}