ci: add release please#48
Merged
Merged
Conversation
c475e71 to
ba90418
Compare
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 pull request restructures and improves the project's GitHub Actions workflows for CI, release, and commit linting, and introduces configuration for automated releases and commit message validation. The main workflow (
build-and-release.yml) is removed and replaced with more modular workflows for CI, release automation, and commit linting. Additionally, configuration files for release management and commit linting are added.Workflow Restructuring and Automation:
.github/workflows/build-and-release.ymlworkflow, splitting its responsibilities into dedicated workflows for CI, release, and commit linting..github/workflows/ci.ymlto handle building, testing, and code coverage reporting on every push and pull request tomain..github/workflows/release.ymlto automate versioning and publishing NuGet packages usingrelease-pleaseand to attach release artifacts to GitHub Releases..github/workflows/commitlint.ymlto enforce semantic PR titles and commit messages.Release and Linting Configuration:
release-please-config.jsonand.release-please-manifest.jsonto configure and track automated releases for theTurboHTTPpackage. [1] [2]commitlint.config.jsto define conventional commit rules for commit message validation.