-
Notifications
You must be signed in to change notification settings - Fork 520
Admin : Merging Pull Requests
Z3 Development edited this page Jan 8, 2023
·
5 revisions
- Always select Squash and Merge
- Change the 'title' of the Merge, following Conventional Commits (Angular)
<type>(<scope>): <subject>
Scope:
- use the package name, like 'modeling'
Types:
-
breaking changes to API require '!', like
feat(modeling)!: change comment
, ==> 3.0.0 -
feat : A new feature or major revision ==> MINOR version, e.g. 2.0.8 ==> 2.1.0
-
fix : A bug fix ==> PATCH version, e.g. 2.0.8 ==> 2.0.9
-
build : Changes that affect the build system or external dependencies
-
ci : Changes to CI configuration files and scripts
-
docs : Documentation only changes
-
perf : Code changes that improve performance
-
refactor : Code changes that neither fix a bug nor add a feature
-
style : Changes that do not affect the meaning of the code
-
test : Adding new tests or correcting existing tests