docs(PR Template): Add PR Template Enforcing Conventional Commits #107 (#137)

Signed-off-by: Ryan Russell <git@ryanrussell.org>
This commit is contained in:
Ryan Russell 2022-06-12 02:40:17 -05:00 committed by GitHub
parent a29b66068c
commit d0af04d427
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

19
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View File

@ -0,0 +1,19 @@
<!--
**Commits Must Be Signed and Your PR title must conform to the conventional commit spec**
* See: https://github.com/dragonflydb/dragonfly/blob/main/CONTRIBUTING.md
* Please follow the section on `pre-commit hooks`, a linter will validate before you push
Example PR Title: <type>(<scope>)!: <description>
* `type` = bug, chore, feat, fix, docs, build, style, refactor, perf, test
* `!` = OPTIONAL: signals a breaking change
* `scope` = Optional when `type` is "chore" or "docs"
* `description` = short description of the change
Examples:
* chore(examples): Clarify `docker` usage #120
* docs(readme): Fix Example Links #121
* feat(ingest)!: Add new ingest #122
* fix(ingest): Refactor for loop to list comprehension #123
-->