update and automate release notes#5969
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces automation for the release management lifecycle, specifically targeting the creation and publication of GitHub releases. By standardizing branch naming conventions for release candidates and hotfixes, the system can now automatically detect release versions and streamline the deployment process. Highlights
Ignored Files
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize the Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counterproductive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request updates release and hotfix branch naming conventions, changing the release candidate branch to include the version tag and updating the hotfix branch prefix from 'hotfix-' to 'hotfix/'. Feedback suggests renaming the release candidate branch prefix to 'release-candidates/' to avoid Git Directory/File conflicts with existing branches, and simplifying the bash regex prefix check in the hotfix script to a standard glob match for better portability.
525c5a6 to
1356a02
Compare
|
/gemini review |
There was a problem hiding this comment.
Code Review
This pull request updates the tools/create-release-candidate.sh script to append the new release tag to the release candidate branch name (RC_BRANCH), changing it from a static release-candidate to a dynamic release-candidate-${NEW_TAG}. There are no review comments, and I have no additional feedback to provide.
1356a02 to
f4ddd36
Compare
09fafba
into
GoogleCloudPlatform:develop
Draft Release Notes
Automatically creates a draft GitHub Release with generated release notes when the RC → main or hotfix → main pull request is ready for review.
Publish Release Notes
Automatically creates the release tag and publishes the GitHub Release with generated release notes when the release-candidate-* or hotfix-* PR is merged into the main.
Updated release-candidate branch naming:
Changed the release-candidate branch from a fixed name (release-candidate) to a versioned format (release-candidate-vX.Y.Z). This allows each release to have its own dedicated release branch and enables the draft and publish release workflows to identify the release version directly from the branch name.
Submission Checklist
NOTE: Community submissions can take up to 2 weeks to be reviewed.
Please take the following actions before submitting this pull request.