Skip to content

Commit 238c890

Browse files
fix: add Codecov send-notifications step to trigger report processing
Codecov uploads succeed but ci_passed stays null — the GitHub App webhook isn't signaling CI completion. Add explicit send-notifications step so Codecov processes reports without waiting for the webhook. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 33c182e commit 238c890

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,13 @@ jobs:
6868
token: ${{ secrets.CODECOV_TOKEN }}
6969
files: coverage.xml
7070
fail_ci_if_error: false
71+
- name: Notify Codecov
72+
if: matrix.python-version == '3.12'
73+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
74+
with:
75+
token: ${{ secrets.CODECOV_TOKEN }}
76+
run_command: send-notifications
77+
fail_ci_if_error: false
7178

7279
security:
7380
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)