From 98cd10323484a0580db8ab7ff9f40da5da440a53 Mon Sep 17 00:00:00 2001 From: Zhongyang Wu Date: Thu, 22 Feb 2024 23:53:58 -0800 Subject: [PATCH] chore: skip coverage check for dependencies update (#1558) skip coverage check if the PR is labeled dependencies --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 674fcffb53..96d9cc285b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -131,6 +131,7 @@ jobs: coverage: continue-on-error: true runs-on: ubuntu-latest + if: ${{ ! contains(github.event.pull_request.labels.*.name, 'dependencies') }} steps: - uses: actions/checkout@v4 with: