ci: enable bitgo semantic release flow#76
Merged
mohammadalfaiyazbitgo merged 1 commit intoJul 21, 2025
Conversation
Ticket: WP-5314 Ticket: PROJECT-NUMBER
There was a problem hiding this comment.
Pull Request Overview
This PR sets up automated semantic release workflow for the project by integrating BitGo's reusable GitHub Actions workflow. The changes enable automatic version bumping, changelog generation, and package publishing based on conventional commit messages.
- Adds GitHub Actions workflow configuration for semantic release automation
- Configures Node.js 22.x for linting, testing, and releasing processes
- Sets up release triggers for multiple branch patterns including master, beta, alpha, and version-specific branches
|
|
||
| jobs: | ||
| release: | ||
| uses: BitGo/gha-release-typescript-library/.github/workflows/release.yml@v3 |
There was a problem hiding this comment.
Using a mutable tag 'v3' for the reusable workflow poses a security risk as the referenced workflow could change without notice. Consider pinning to a specific commit SHA or immutable tag for better security and reproducibility.
Suggested change
| uses: BitGo/gha-release-typescript-library/.github/workflows/release.yml@v3 | |
| uses: BitGo/gha-release-typescript-library/.github/workflows/release.yml@<commit-SHA> |
Contributor
Author
There was a problem hiding this comment.
pranavjain97
approved these changes
Jul 21, 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.
Ticket: WP-5314
Ticket: PROJECT-NUMBER