From eacd81354952a97637917b66ef25f49aa1fbfec3 Mon Sep 17 00:00:00 2001 From: Eli Fine Date: Fri, 9 May 2025 19:08:54 +0000 Subject: [PATCH] logic --- template/.github/workflows/ci.yaml.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/.github/workflows/ci.yaml.jinja b/template/.github/workflows/ci.yaml.jinja index 99496f43..8ea02e2a 100644 --- a/template/.github/workflows/ci.yaml.jinja +++ b/template/.github/workflows/ci.yaml.jinja @@ -61,7 +61,7 @@ jobs: {% endraw %}{% if use_codecov %}{% raw %} - name: Upload coverage to Codecov # only upload coverage from fastest job - if: matrix.JOB_MATCHING_DEV_ENV == true && ${{ github.actor != 'dependabot[bot]' }} # dependabot by default doesn't have access to the necessary secret...and dependabot should never be changing coverage anyway so it's fine not uploading it + if: ${{ matrix.JOB_MATCHING_DEV_ENV && github.actor != 'dependabot[bot]' }} # dependabot by default doesn't have access to the necessary secret...and dependabot should never be changing coverage anyway so it's fine not uploading it uses: codecov/codecov-action@v5.1.1 with: files: ./coverage.xml