39 lines
2.1 KiB
Markdown
39 lines
2.1 KiB
Markdown
<!-- BEFORE SUBMITTING YOUR PR, PLEASE REMOVE THIS TEXT -->
|
|
<!-- REMOVE START -->
|
|
# 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.
|
|
<!-- REMOVE END -->
|
|
|
|
## 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 !
|