-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41b3515
commit d7fb335
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
## Contribution Guidelines | ||
Make your Pull Requests clear and obvious to anyone viewing them. | ||
Set `main` as your target branch. | ||
|
||
#### Use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) principles in naming PRs and branches: | ||
|
||
- `Feat: ...` for new features and new functionality implementations. | ||
- `Bug: ...` for bug fixes. | ||
- `Fix: ...` for minor issues fixing, like typos or inaccuracies in code. | ||
- `Chore: ...` for boring stuff like code polishing, refactoring, deprecation fixing etc. | ||
|
||
PR naming example: `Feat: Add Threads API handling` or `Bug: Fix message result duplication` | ||
|
||
Branch naming example: `feat/add-threads-API-handling` or `bug/fix-message-result-duplication` | ||
|
||
#### Write description to pull requests in following format: | ||
- What | ||
|
||
... | ||
- Why | ||
|
||
... | ||
- Affected Areas | ||
|
||
... | ||
- More Info | ||
|
||
... | ||
|
||
We'll appreciate you including tests to your code if it is needed and possible. ❤️ |