From de7367b4e39e3d529684e85c3d862c2bbebadeb3 Mon Sep 17 00:00:00 2001 From: "Jonas L." Date: Thu, 25 Jul 2024 17:54:44 +0200 Subject: [PATCH] ci: don't upload coverage for renovate or release-please PRs (#107) --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 403ed04..768aa8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,6 +50,9 @@ jobs: - run: npm run test -- --ci - uses: codecov/codecov-action@v4 + if: > + !startsWith(github.head_ref, 'renovate/') && + !startsWith(github.head_ref, 'release-please--') with: token: ${{ secrets.CODECOV_TOKEN }}