ci: add tagpr for automated release management#48
Merged
Conversation
- Add tagpr workflow to create release PRs automatically - Configure version files: engine/Cargo.toml, server/Cargo.toml - Use v-prefix for tags (v0.1.0, v0.2.0, etc.)
- Add VERSION file with current version (0.1.0) - Update .tagpr to use VERSION file - Simpler than tracking multiple Cargo.toml files
- Remove VERSION file - Configure tagpr to update all 3 Cargo.toml files - versionFile = engine/Cargo.toml,server/Cargo.toml,cli/Cargo.toml
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.
Summary
Add tagpr for automated release management.
What tagpr does
main, tagpr creates a release PR automaticallyCargo.tomlfilesChanges
.github/workflows/tagpr.yml- GitHub Actions workflow.tagpr- Configuration filevPrefix = true- Usevprefix for tags (e.g.,v0.1.0)versionFile = engine/Cargo.toml,server/Cargo.toml- Files to update versionHow to release
mainas usualNote
After merging this PR, enable "Allow GitHub Actions to create and approve pull requests" in:
Settings > Actions > General > Workflow permissions