-
Notifications
You must be signed in to change notification settings - Fork 8
Attempt to fix v5 download issue #780
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Warning Rate limit exceeded@CoMPaTech has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 6 minutes and 55 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, 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 have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (1)
WalkthroughUpdated the GitHub Actions verify workflow to use actions/download-artifact@v5, restrict downloads to coverage-* artifacts into an artifacts directory, and adjust the coverage combination step to read from artifacts/coverage*/.coverage*. Changes
Sequence Diagram(s)sequenceDiagram
participant GH as GitHub Actions Runner
participant DA as actions/download-artifact@v5
participant FS as Workspace FS
participant CC as Combine Coverage Script
GH->>DA: Download artifacts with name pattern coverage-*
DA->>FS: Save to artifacts/...
GH->>CC: Read artifacts/coverage*/.coverage*
CC-->>GH: Combined coverage report
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
✨ Finishing Touches🧪 Generate unit tests
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🧹 Nitpick comments (1)
.github/workflows/verify.yml (1)
225-228
: v5 migration looks correct; consider making directory merge behavior explicitUsing actions/download-artifact@v5 with a pattern is fine. To avoid surprises across action updates and simplify the combine step, explicitly set merge-multiple:
- If you want a flat directory with all files merged: set merge-multiple: true and adjust the combine command accordingly.
- If you want to keep per-artifact subdirectories: set merge-multiple: false to make the intent explicit and keep your current combine command.
Apply this to flatten the directory structure:
- name: Download all coverage artifacts - uses: actions/download-artifact@v5 - with: - pattern: coverage-* - path: ${{ github.workspace }}/artifacts + uses: actions/download-artifact@v5 + with: + pattern: coverage-* + path: ${{ github.workspace }}/artifacts + merge-multiple: trueAlternatively, to preserve current behavior explicitly:
- name: Download all coverage artifacts uses: actions/download-artifact@v5 with: pattern: coverage-* path: ${{ github.workspace }}/artifacts + merge-multiple: false
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
.github/workflows/verify.yml
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: Run pytest using Python 3.13
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #780 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 21 21
Lines 3388 3388
=========================================
Hits 3388 3388 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Summary by CodeRabbit