chore: automate CHANGELOG generation in release workflow#4447
Conversation
Updated comments for clarity and consistency in the release PR workflow.
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
📝 WalkthroughWalkthroughThis PR updates ChangesRelease Automation Workflow
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Suggested labels
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 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.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/workflows/create-release-pr.yml:
- Line 204: The PR body contains unnecessary escaped dollar signs
(`\$\`${NEXT_VERSION}\$\``) which render literal backslashes; update the string
so the fragment `\$`${NEXT_VERSION}\$`` is replaced with ```${NEXT_VERSION}```
(i.e., remove the backslashes before the $ characters) so the backticks render
as Markdown code with the template variable.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 69829ac6-59f2-49ad-8dd2-d020082ab783
📒 Files selected for processing (1)
.github/workflows/create-release-pr.yml
Fix typo in push event and update release message format.
Removes the manual "Update CHANGELOG.md" checklist item from release PRs by auto-generating the CHANGELOG entry from merged PRs since the last git tag.
Also removes the redundant "Verify all CI checks pass" checklist item — branch protection already enforces this.
Summary by CodeRabbit