Go to file
Automated Version Bump ddb7765526 ci: version bump to v7.0.2 2020-04-03 11:15:16 +00:00
.github/workflows reverted test 2020-04-03 13:08:39 +02: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 README 2020-04-03 13:08:03 +02:00
action.yml Add tag prefix 2019-11-20 13:37:42 +01:00
index.js test checkout v2 2020-04-03 13:04:35 +02:00
package-lock.json ci: version bump to v7.0.2 2020-04-03 11:15:16 +00:00
package.json ci: version bump to v7.0.2 2020-04-03 11:15:16 +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.

Make sure you use the actions/checkout@v2 action!

Workflow

  • Based on the commit messages, increment the version from the lastest release.
    • If the string "BREAKING CHANGE" or "major" 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" or includes "minor" 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.