Enabled Codecov upload on 'deps/' branches to report required checks. - #695
Conversation
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 26 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Repository UI Review profile: ASSERTIVE Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
WalkthroughThe workflow now uploads Codecov coverage from qualifying PHP 8.3 and Drupal 11 matrix jobs on dependency branches when ChangesCodecov upload condition
Estimated code review effort: 1 (Trivial) | ~5 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #695 +/- ##
=======================================
Coverage 97.29% 97.29%
=======================================
Files 52 52
Lines 4439 4439
=======================================
Hits 4319 4319
Misses 120 120 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Summary
The "Upload code coverage reports to Codecov" step in
.github/workflows/test.ymlskipped running whenever the head branch started withdeps/, which is exactly the branch pattern Renovate always uses for its dependency-update PRs. Because the upload never ran on those branches, Codecov never posted thecodecov/patchandcodecov/projectcontexts, both of which themainbranch ruleset lists as required status checks. Every Renovate PR therefore sat atmergeStateStatus: BLOCKEDindefinitely: even with all 14 GitHub Actions checks green, the two Codecov contexts stayed at "Expected - Waiting for status to be reported" forever, so Renovate automerge could never fire. This change removes thedeps/-branch exclusion so the upload runs unconditionally, matching how the sibling reposdrevops/behat-screenshotandAlexSkrypnyk/drupal_helpersalready configure this step.Changes
&& !startsWith(github.head_ref, 'deps/')clause from theif:condition on the Codecov upload step in.github/workflows/test.yml, so it now runs whenevermatrix.php_version == '8.3' && matrix.drupal_version == '11' && matrix.deps == 'normal' && env.CODECOV_TOKEN != '', regardless of branch.Before / After
Summary
deps/*.Validation
CONTRIBUTING.mdstep-definition rules apply to this GitHub Actions workflow change.