A cookiecutter to boostrap a GitHub action.
cookiecutter https://github.com/stracquadaniolab/cookiecutter-github-action
Actions should use the following semantic versioning scheme:
{MAJOR}.{MINOR}.{PATCH}
where:
- MAJOR: the version introduces incompatible changes with the previous one or new code/functioning structure.
- MINOR: the version introduces compatible changes with the previous one (e.g. new features).
- PATCH: bug fixes.
Version should be tracked using bumpversion
. You can bump all parts of the version scheme as follows:
- MAJOR:
bumpversion major
- MINOR:
bumpversion minor
- PATCH:
bumpversion patch
Changes should be commited to GIT by running:
git push
git push --tags
- Giovanni Stracquadanio, @gstracquadanio