diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-08-17 10:53:11 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@vyos.io> | 2026-08-17 10:53:11 +0300 |
| commit | 82ad2f23daed244860812ed556f58a5283d3b113 (patch) | |
| tree | f3c82a28f44ea8e4438eb21ebabfc41930e99f97 | |
| parent | 985ab80d647e56925f84f5631434656b1f289d9e (diff) | |
| download | vyos.vyos-codecov-test-analytics-probe.tar.gz vyos.vyos-codecov-test-analytics-probe.zip | |
T9220: ci: fold test-results upload condition (yaml line-length)codecov-test-analytics-probe
🤖 Generated by [robots](https://vyos.io)
| -rw-r--r-- | .github/workflows/codecoverage.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/codecoverage.yml b/.github/workflows/codecoverage.yml index 99047151..25155377 100644 --- a/.github/workflows/codecoverage.yml +++ b/.github/workflows/codecoverage.yml @@ -71,7 +71,11 @@ jobs: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - name: Upload test results to Codecov - if: ${{ !cancelled() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false) && github.actor != 'dependabot[bot]' }} + if: >- + ${{ !cancelled() && + (github.event_name != 'pull_request' || + github.event.pull_request.head.repo.fork == false) && + github.actor != 'dependabot[bot]' }} uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5.5.5 timeout-minutes: 5 continue-on-error: true |
