This repository has been archived by the owner on Jul 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
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
e26a3ce
commit 8eca140
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 @@ | ||
# PR Title | ||
|
||
### Context: | ||
Describe the code changes of this Pull Request. | ||
|
||
### Branch Names: | ||
|
||
Pick one of the following branch name for your commits: | ||
- `feature-*` A new feature was added to the codebase | ||
- `fix-*` A bug was fixed | ||
- `refactor-*` The code were refactored | ||
- `cleanup-*` The code were refactored | ||
|
||
``` | ||
git checkout -b feature-your-branch | ||
``` | ||
|
||
### Proposed Changes | ||
|
||
- [ ] implement feature | ||
- [ ] document feature | ||
- [ ] test feature | ||
- [ ] update version at the `Makefile` | ||
- [ ] `make` this will build the new source and generate the new docs | ||
- [ ] `make build-commit` if everything pass, we can build and `git commit` the artifact | ||
|
||
The following command need to be exit with code `0` to be merged! | ||
``` | ||
make | ||
``` |