feat: implement release-please workflow #12967
Merged
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 of changes
This PR will implement release-please. git-cliff was not good enough for publishing release-notes, and changesets added unnecessary complexity imo by requiring devs to add a changeset -- this solution will work with our conventional commits standard. I tested it out on my taiko-mono fork, and it works awesome.
I am giving every package, including the root, a
package.json
to declare the version. As we make conventional commits throughout our work iteration, the github-action will update a release PR.We can merge this release PR at a cadence, and it will bump / release packages for those that have changes in the git diff that matches that sub-package path. It will push some tags:
<packageName>-vx.y.z
for each each sub-package release as well.