Skip to content

Commit 087aeba

Browse files
committed
update chore description
1 parent 34acc88 commit 087aeba

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

content/en/community/contributing/code/workflow.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ Create a branch following the guideline below and push [commits](#commits) at le
7171

7272
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:
7373

74-
Type | Description | Example commit message | Release type
75-
-- |-------------------------------------------------------------------------------------------------------|--------------------------------------------------------------| --
76-
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
75+
-- |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------| --
76+
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
8383

8484
> [!NOTE]
8585
> Breaking changes should be explained under the commit type (feat, fix and perf) using the prefix `BREAKING CHANGE`.

0 commit comments

Comments
 (0)