From 9d34da46de74699b851f14a53839188d258b5f3f Mon Sep 17 00:00:00 2001 From: shravangoswami-bot Date: Wed, 10 Jun 2026 23:36:40 +0000 Subject: [PATCH] skip codecov upload on Dependabot PRs --- .github/workflows/CI.yml | 3 +++ .github/workflows/Enzyme.yml | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 262433826..0f4667780 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -76,6 +76,7 @@ jobs: - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v7 + if: github.actor != 'dependabot[bot]' with: files: lcov.info token: ${{ secrets.CODECOV_TOKEN }} @@ -101,6 +102,7 @@ jobs: - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v7 + if: github.actor != 'dependabot[bot]' with: files: lcov.info token: ${{ secrets.CODECOV_TOKEN }} @@ -126,6 +128,7 @@ jobs: - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v7 + if: github.actor != 'dependabot[bot]' with: files: lcov.info token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/Enzyme.yml b/.github/workflows/Enzyme.yml index 555041741..484a4da33 100644 --- a/.github/workflows/Enzyme.yml +++ b/.github/workflows/Enzyme.yml @@ -37,6 +37,7 @@ jobs: - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v7 + if: github.actor != 'dependabot[bot]' with: files: lcov.info token: ${{ secrets.CODECOV_TOKEN }}