-
Notifications
You must be signed in to change notification settings - Fork 15
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
chore: Add release drafter #47
Conversation
Reviewer's Guide by SourceryThis pull request adds a Release Drafter workflow to automate the process of creating release notes. It introduces two new files: a GitHub Actions workflow file and a configuration file for the Release Drafter. File-Level Changes
Tips
|
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.
Hey @kienvo - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟡 Security: 1 issue found
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment to tell me if it was helpful.
steps: | ||
|
||
- name: Release Drafter | ||
uses: release-drafter/[email protected] |
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.
🚨 suggestion (security): Consider pinning the action to a specific commit hash
For improved security, consider pinning the release-drafter action to a specific commit hash instead of using a version tag. This ensures the exact version of the action being used and prevents potential supply chain attacks.
uses: release-drafter/release-drafter@v6.0.0 | |
uses: release-drafter/release-drafter@45c556cec4e26c6595eb3ed050d4220c0e4c25d9 |
Resolves: #46
Summary by Sourcery
Integrate Release Drafter into the CI workflow to automate the generation of release notes for new releases.
CI: