feat(analyzer): implement IssueHealth and PRHealth calculations for RecruiterSummary #260#456
Conversation
… in recruiter output agnivo988#260
|
Warning Review limit reached
More reviews will be available in 2 minutes and 36 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (7)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Contributed as part of GSSoC '26.
Problem Description
The
RecruiterSummarydata model contained structural fields forIssueHealthandPRHealththat were left completely unassigned inside the metrics factory layer. Additionally, the terminal visualization exporter completely omitted these values, causing generated output summaries to miss crucial project maintenance health telemetry. Fixes #260.Solution Implemented
BuildRecruiterSummaryininternal/analyzer/recruiter_summary.goto compute status bounds based on explicit repository metrics parameters:<20="Healthy",20-49="Backlogged",>=50="Critical").>60%="Active",30%-60%="Slow",<30%="Stalled").cmd/analyze.goto collect a 100-item pull request sample viaclient.GetPullRequestsWithLimit, dynamically parsing the merge-to-total ratio and routing parameters cleanly down into the summary factory.internal/output/recruiter.goto output structured formatting definitions for🐛 Issue Healthand📥 PR Health.internal/analyzer/recruiter_summary_test.gochecking all threshold tiers, confirming valid string assignments across exact edge-case boundaries.Verification & Test Logs
Validated across localized testing paths:
go test -v ./internal/analyzer/...: PASSED (All health metric boundaries validated)go build ./...: PASSED (Clean binary compilation)