-
Notifications
You must be signed in to change notification settings - Fork 23
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
feat(ci): Add semantic PR action and semantic release #106
Conversation
WalkthroughThe changes introduce two GitHub Actions workflows: one for enforcing semantic pull request practices and another for automating semantic versioning and release management. The first workflow validates pull request titles against conventional commit standards, while the second workflow manages the release process based on commit messages, ensuring streamlined version control and release cycles. Changes
Poem
Recent review detailsConfiguration used: CodeRabbit UI Files selected for processing (2)
Additional comments not posted (4)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
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.
OK.
🎉 This PR is included in version 0.7.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Overview
This PR introduces an option for auto semantic releases and the prerequisite semantic PR action.
The semantic release action will trigger on
fix
andfeat
commits to main creatingpatch
andminor
releases respectively.To trigger a
major
release, you can addBREAKING CHANGE
in the commit message during the merge, see screenshot.It is important to note that by default the breaking change will trigger a
major
release, so while we are onv0.x
we should avoid triggering the major releases until we have released av1
.In my testing, I did not see the workflow trigger a release on
chore
,test
, ordocs
commits. So it is important that when submitting and review PRs are are consistent in our semantic commit usage to ensure releases are triggered as intended.Summary by CodeRabbit