chore(ci): migrate from release-please to release-drafter#998
Merged
Conversation
… version workflow
Contributor
There was a problem hiding this comment.
Pull request overview
This PR migrates the repository’s release automation from release-please to Release Drafter + a manual version-bump workflow, shifting release creation to a semi-automated flow where publishing a GitHub Release triggers Docker image publishing.
Changes:
- Replaced the release-please-driven release workflow with a release-published trigger that builds/pushes Docker images from the published tag.
- Added Release Drafter workflow + configuration to maintain draft release notes and resolve the next version.
- Added a manual “Bump Version” workflow and
bin/bump-versionhelper to bumpconfig/version.rband regenerate OpenAPI artifacts in an automated PR.
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
bin/bump-version |
New Ruby helper script to compute/validate the next version and update config/version.rb. |
.github/workflows/release.yml |
Simplifies release automation to publish Docker images when a GitHub Release is published. |
.github/workflows/release-drafter.yml |
Adds workflow to keep the next release draft up to date via Release Drafter. |
.github/workflows/release_artifacts.yml |
Removes the prior release-please-specific artifact refresh workflow. |
.github/workflows/ci.yml |
Removes release-please-specific OpenAPI regeneration/commit behavior; keeps verification only. |
.github/workflows/bump-version.yml |
Adds a manual workflow to resolve the next version, bump it, regenerate OpenAPI artifacts, and open a PR. |
.github/release-please-config.json |
Removes release-please configuration. |
.github/release-drafter.yml |
Adds Release Drafter configuration (categories, version resolver, template). |
.github/.release-please-manifest.json |
Removes release-please manifest. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR implements the transition from release-please to a semi-automated release flow: