Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Github action to automatically version NPM packages

License

Notifications You must be signed in to change notification settings

cloudconformity/npm-version-action

Repository files navigation

npm-version-action

A GitHub action for automatically versioning repos using npm version ${type} after PRs are merged

Follows Semantic commit message format to version;

  • If any commit has "BREAKING CHANGE" in it, does a MAJOR semver increase
  • If any commit starts with "feat:", does a MINOR semver increase
  • Default to a "patch" semver increase.