Go to file
phips28 605400761d custom PACKAGEJSON_DIR 2020-01-13 15:04:50 +01:00
.github/workflows Fix typo 2019-11-20 15:55:55 +01:00
.gitignore added package lock 2019-10-26 21:09:42 +02:00
Dockerfile Fix 2019-11-20 13:43:29 +01:00
README.md fix readme 2019-10-28 17:52:31 +01:00
action.yml Add tag prefix 2019-11-20 13:37:42 +01:00
index.js custom PACKAGEJSON_DIR 2020-01-13 15:04:50 +01:00
package-lock.json "ci: version bump to v5.0.17" 2019-11-20 16:04:57 +00:00
package.json "ci: version bump to v5.0.17" 2019-11-20 16:04:57 +00:00

README.md

gh-action-bump-version

GitHub Action for automated npm version bump.

This Action bumps the version in package.json and push it back to the repo. It is meant to be used on every successful merge to master but you'll need to configured that workflow yourself. You can look to the .github/workflows/push.yml file in this project as an example.

Workflow

  • Based on the commit messages, increment the version from the lastest release.
    • If the string "BREAKING CHANGE" is found anywhere in any of the commit messages or descriptions the major version will be incremented.
    • If a commit message begins with the string "feat" then the minor version will be increased. This works for most common commit metadata for feature additions: "feat: new API" and "feature: new API".
    • All other changes will increment the patch version.
  • Push the bumped npm version in package.json back into the repo.
  • Push a tag for the new version back into the repo.