You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/community/contributing/code/workflow.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,15 +71,15 @@ Create a branch following the guideline below and push [commits](#commits) at le
71
71
72
72
The commit format should follow the [conventional-changelog angular preset](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular). This means that some of the release process can be automated. See the list of commit types and examples below:
73
73
74
-
Type | Description | Example commit message | Release type
Build | Changes that affect the build system, or external dependencies, or continuous integration | build(#123): build admin before webapp | none
77
-
Features | A new feature or improvement that users will notice. | feat(#456): add home tab | minor
78
-
Bug fixes | Change code that wasn't working as intended. | fix(#123): infinite spinner when clicking contacts tab twice | patch
79
-
Performance | A code change that improves performance. Measure the performance improvement to inform the community. | perf(#789): lazily loaded angular modules | patch
80
-
Refactoring | A code change that neither fixes a bug nor adds a feature. | refactor(#123): remove unused code | patch
81
-
Test | Adding missing tests or correcting existing tests. | test(#123): add unit test for login component | none |
82
-
Non-code | A change that user won't notice, like a change in a README file, updating dependencies etc. | chore(#123): update README | none
74
+
Type | Description | Example commit message | Release type
Build | Changes that affect the build system, or external dependencies, or continuous integration | build(#123): build admin before webapp | none
77
+
Features | A new feature or improvement that users will notice. | feat(#456): add home tab | minor
78
+
Bug fixes | Change code that wasn't working as intended. | fix(#123): infinite spinner when clicking contacts tab twice | patch
79
+
Performance | A code change that improves performance. Measure the performance improvement to inform the community. | perf(#789): lazily loaded angular modules | patch
80
+
Refactoring | A code change that neither fixes a bug nor adds a feature. | refactor(#123): remove unused code | patch
81
+
Test | Adding missing tests or correcting existing tests. | test(#123): add unit test for login component | none |
82
+
Non-code | General maintenance and tooling updates that are not related to build logic or tests; does not change runtime behavior, like a change in a README file, updating dependencies etc. | chore(#123): update README | none
83
83
84
84
> [!NOTE]
85
85
> Breaking changes should be explained under the commit type (feat, fix and perf) using the prefix `BREAKING CHANGE`.
0 commit comments