From 196e653a5011484b527ad1c45e208f8023cc1537 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 28 Feb 2024 15:13:19 +0000 Subject: [PATCH] build: Only run bisectability check on PRs Signed-off-by: Rob Bradford (cherry picked from commit 3e355298427bfbc13b2c822a1bb68b3d80783e6f) --- .github/workflows/quality.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml index 76bc22464..6d9982a38 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -45,8 +45,8 @@ jobs: override: true components: rustfmt, clippy - - name: Debug Check (default features) - if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }} + - name: Bisectability Check (default features) + if: ${{ github.event_name == 'pull_request' && matrix.target == 'x86_64-unknown-linux-gnu' }} run: | set -e commits=$(git rev-list origin/${{ github.base_ref }}..${{ github.sha }})