ci: update changesets and docs for 1.0.0#40
Merged
jryanconklin merged 3 commits intomainfrom Feb 24, 2026
Merged
Conversation
…sh guard - Replace manual workflow_dispatch publish with changesets/action release flow - Add pre-push hook to block pushes that change package src without a changeset
✅ Deploy Preview for froglet ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
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.
Issue Description
The
1.0.0release was published manually via aworkflow_dispatchworkflow (publish-npm.yaml) with no changelog and no automated version management. This PR closes those gaps for future work:CHANGELOG.mdentry for@froglet/ui@1.0.0covering all 20 components and the library's design principleschangesets/action, which automates version bumps, changelog writes, npm publishes, and git tags on merge tomain— scoped to changes inpackages/froglet-ui/**or.changeset/**only (docs/storybook merges do not trigger it)pre-pushHusky hook to block pushes that modifypackages/froglet-ui/src/without a corresponding.changeset/*.mdfile, prompting contributors to runnpx changesetbefore pushingTesting Instructions
packages/froglet-ui/CHANGELOG.mdhas a complete1.0.0entry.github/workflows/publish-npm.yamlis gone and.github/workflows/release.yamlis presentpackages/froglet-ui/**and.changeset/**packages/froglet-ui/src/git push— should be blocked with a message to runnpx changesetnpx changeset, commit the generated file, then push — should succeed