diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06158e4..aa3ac20 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,6 +30,9 @@ jobs: run: make test ARGS="--cov --cov-config=pyproject.toml --cov-report=xml" - name: Upload coverage reports to Codecov + if: > + !startsWith(github.head_ref, 'renovate/') && + !startsWith(github.head_ref, 'release-please--') uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} @@ -70,6 +73,9 @@ jobs: ANSIBLE_FORCE_COLOR: "1" - name: Upload coverage reports to Codecov + if: > + !startsWith(github.head_ref, 'renovate/') && + !startsWith(github.head_ref, 'release-please--') uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }}