Conversation
Signed-off-by: jeluard <jeluard@users.noreply.github.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
WalkthroughThe Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~5 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ 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 |
There was a problem hiding this comment.
Pull request overview
Updates the cargo-release workspace configuration to use the newer structured rate-limit configuration format.
Changes:
- Replaces scalar
rate-limit = 20with a structuredrate-limitconfiguration containing separate limits for new vs existing packages.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| [rate-limit] | ||
| new-packages = 20 | ||
| existing-packages = 20 | ||
|
|
||
| # Let cargo-release verify the tree is clean before proceeding | ||
| pre-release-commit-message = "chore: release {{version}}" |
There was a problem hiding this comment.
Defining [rate-limit] here turns all subsequent keys (e.g. pre-release-commit-message, tag-message, tag-name) into fields of the rate-limit table in TOML, which likely breaks cargo-release config parsing. Use dotted keys (rate-limit.new-packages, rate-limit.existing-packages), an inline table (rate-limit = { ... }), or move the [rate-limit] table to the end of the file so later settings remain top-level.
Codecov Report✅ All modified and coverable lines are covered by tests. 🚀 New features to boost your workflow:
|
Summary by CodeRabbit