From d2d87784255d34858f9a11cb105bce015b555989 Mon Sep 17 00:00:00 2001 From: hiento09 <136591877+hiento09@users.noreply.github.com> Date: Tue, 8 Jul 2025 16:36:38 +0700 Subject: [PATCH] chore: disable coverage check for external contributor pr (#5728) --- .github/workflows/jan-linter-and-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/jan-linter-and-test.yml b/.github/workflows/jan-linter-and-test.yml index f80324b87..e09c23f04 100644 --- a/.github/workflows/jan-linter-and-test.yml +++ b/.github/workflows/jan-linter-and-test.yml @@ -38,6 +38,7 @@ on: jobs: base_branch_cov: + if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository runs-on: ubuntu-latest continue-on-error: true steps: @@ -225,6 +226,7 @@ jobs: retention-days: 2 coverage-check: + if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository runs-on: ubuntu-latest needs: base_branch_cov continue-on-error: true