-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated pull request template * Updated contributing * Updated changelog * Added branch naming convention
- Loading branch information
Showing
6 changed files
with
70 additions
and
17 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,36 @@ | ||
# Branch naming convention | ||
|
||
## Branch naming | ||
|
||
> Please note for new pull requests create new branches from current `develop` branch only. | ||
Branch name should include type of your contribution and context. Please follow next pattern for naming your branches: | ||
|
||
```bash | ||
feature/add-some-feature | ||
technical/some-technical-improvements | ||
bugfix/fix-some-bug-name | ||
``` | ||
|
||
## Before PR actions | ||
|
||
### Squash commits | ||
|
||
Please squash all branch commits into the one before openning your PR from your fork. It's simple to do with the git: | ||
|
||
```bash | ||
git rebase -i [hash your first commit of your branch]~1 | ||
git rebase -i 6467fe36232401fa740af067cfd8ac9ec932fed2~1 # example | ||
``` | ||
|
||
### Add commit description | ||
|
||
Please complete your commit description folowing next pattern: | ||
|
||
``` | ||
Technical/Add info files # should be the same name as your branch name | ||
* Added license, changelog, contributing, code of conduct docs | ||
* Added GitHub templates | ||
* Updated project license link | ||
``` |
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
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
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
File renamed without changes.
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