-
Notifications
You must be signed in to change notification settings - Fork 65
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 #445 from primitivefinance/repo-pull-request-template
repo: add a pull request template
- Loading branch information
Showing
1 changed file
with
26 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,26 @@ | ||
--- | ||
name: Pull request | ||
about: Create a pull request to have your own changes added to the project | ||
title: ADD YOUR TITLE HERE WITH TAGS AND BRIEF DESCRIPTION | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Give an overview of the tasks completed** | ||
Give a clear and high level level overview of the tasks completed in this pull request. | ||
|
||
**Link to issue(s) that this PR closes** | ||
Pull requests are required to close a related issue. If there is no issue, please create one first. | ||
|
||
**Provide an adequate title with tags and a brief description** | ||
The tags should be in the format of "tag:" Description. The tags are as follows: | ||
- "feat:" A new feature | ||
- "fix:" A bug fix | ||
- "docs:" Documentation only changes | ||
- "style:" Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) | ||
- "refactor:" A code change that neither fixes a bug nor adds a feature | ||
- "perf:" A code change that improves performance | ||
- "test:" Adding missing or correcting existing tests | ||
- "chore:" Changes to the build process or auxiliary tools and libraries such as documentation generation | ||
- "repo:" Changes to the repository itself |