-
Notifications
You must be signed in to change notification settings - Fork 14
feat: Add conventional commits check and release please #256
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
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.
Pull Request Overview
This PR introduces automated release management and conventional commit validation by adding release-please configuration and GitHub workflow automation. The changes enforce conventional commit format for PR titles and enable automatic GitHub releases based on commit types.
- Adds release-please configuration for automated changelog generation and version management
- Implements PR title validation using conventional commits workflow
- Updates documentation to explain the new trunk-based development workflow
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
File | Description |
---|---|
release-please-config.json | Configures release-please for node package with changelog sections mapping commit types to release categories |
.release-please-manifest.json | Sets initial version to 6.0.0 for release tracking |
.github/workflows/release.yml | Adds GitHub workflow for automated releases using release-please |
.github/workflows/conventional-commits.yml | Adds GitHub workflow to validate PR titles follow conventional commit format |
README.md | Documents the new trunk-based development workflow and conventional commit requirements |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #256 +/- ##
=======================================
Coverage 83.66% 83.66%
=======================================
Files 38 38
Lines 1218 1218
Branches 227 227
=======================================
Hits 1019 1019
Misses 199 199 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
types: | ||
- opened | ||
- edited | ||
- reopened |
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.
Why not on all ?
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.
No description provided.