-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from MacPaw/chore/add-contribution-guidelines…
…-to-readme Update README with contribution guidelines
- Loading branch information
Showing
2 changed files
with
62 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. ❤️ |
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