ci: add release-plz workflow for automated releases#46
Merged
Benoît Cortier (CBenoit) merged 3 commits intomasterfrom Dec 16, 2025
Merged
ci: add release-plz workflow for automated releases#46Benoît Cortier (CBenoit) merged 3 commits intomasterfrom
Benoît Cortier (CBenoit) merged 3 commits intomasterfrom
Conversation
Implements release-plz workflow similar to IronRDP, which will: - Automatically create PRs with version bumps and changelog updates - Publish releases to crates.io using trusted publisher authentication - Generate changelogs following Keep a Changelog format
Copilot started reviewing on behalf of
Benoît Cortier (CBenoit)
December 16, 2025 12:46
View session
There was a problem hiding this comment.
Pull request overview
This PR implements an automated release workflow using release-plz, similar to the approach used in IronRDP. The workflow automates version bumping, changelog generation, and publishing to crates.io using trusted publisher authentication.
Key changes:
- Adds release-plz configuration for workspace-level dependency updates and semantic versioning checks
- Configures git-cliff for Keep a Changelog formatted changelog generation with conventional commit parsing
- Sets up GitHub Actions workflow to create release PRs and publish crates automatically
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
release-plz.toml |
Configures release-plz behavior including semver checking, PR naming, changelog integration, and release commit patterns |
cliff.toml |
Defines changelog template using Keep a Changelog format with conventional commit parsing rules and custom grouping |
.github/workflows/release-crates.yml |
Implements two-job workflow: one to open release PRs with version bumps, and another to publish crates using trusted publisher auth |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Raphaël Larivière (Sylfwood)
approved these changes
Dec 16, 2025
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.
Implements release-plz workflow similar to IronRDP, which will: