-
Notifications
You must be signed in to change notification settings - Fork 166
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
1cfdcb5
commit 543ac4a
Showing
1 changed file
with
36 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,36 @@ | ||
# Creating a Pull Request | ||
|
||
We use github actions to do automatic [semantic versioning](https://github.com/semantic-release/semantic-release), so please use the following nomenclature for the commit message according to the type of change: | ||
|
||
* Prefix with `feat:`, and it will trigger a minor version bump. | ||
* Prefix with `fix`:, and it will trigger a patch version bump. | ||
* Prefix with `BREAKING CHANGE:`, and it will trigger a major version bump. | ||
|
||
## Description of the change | ||
<!--Please be very clear on the intention of the modifications included in the pull request.--> | ||
<!--If it is a bug, explain what is the issue at hand and how you are fixing it. --> | ||
<!--If it is an improvement, explain why do you think it is needed and the benefits it brings to the project. --> | ||
<!--Ideally I would recommend to create an issue first to discuss the new feature with the developers.--> | ||
|
||
## Motivation and Context | ||
<!--- Why is this change required? What problem does it solve? --> | ||
<!--- If it fixes an open issue, please link to the issue here. --> | ||
|
||
## How Has This Been Tested? | ||
<!--- Please describe in detail how you tested your changes. --> | ||
<!--- Include details of your testing environment, tests ran to see how --> | ||
|
||
## Types of Changes | ||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] Documentation (adding or updating documentation) | ||
|
||
## Checklist: | ||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
- [ ] My change requires a change to the documentation and I have updated the documentation accordingly. | ||
- [ ] My change adds a new configuration variable and I have updated the `.env.example` file accordingly. | ||
|
||
And lastly, many thanks for taking your time to help us improve this project ! |