eb-semantic-release-gitlab
v2.0.0
Published
Downloads
2
Readme
Semantic Release Gitlab
Storybook
Storybook pushish here
:arrow_heading_down: Commiting Changes
This repo enforce conventional commit
. More info
Types
Must be one of the following:
build: Changes that affect the build system or external dependencies (example scopes: webpack, babel, npm)
chore: Non production code change
ci: Changes to our CI configuration files and scripts (example scopes: Jenkins, Travis, Circle)
docs: Documentation only changes
feat: A new feature
fix: A bug fix
perf: A code change that improves performance
refactor: A code change that neither fixes a bug nor adds a feature
revert: Revert an existing commit
style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
test: Adding missing tests or correcting existing tests
Commit message structure
<type>(scope): <description> - see <jira issue>
[optional body]
[optional footer]
// Simple Example
feat(calendar): added multiyear props to component - see BT-1111
// Extended Example
feat(calendar): added multiyear props to component - see BT-1111
- Multiyear prop must be a number
- Two theme styles
- Unit tests and Snapshots
@see BT-1111