aboutsummaryrefslogtreecommitdiff
path: root/.github/pull_request_template.md
blob: d4ef5481edde3cb0ee037fb67c662343b4414e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!--- Provide ticket number and a general summary of your changes in the Title above -->

## Link to ticket
<!--- Paste link to ticket here -->
[TMA-XX](https://taggid.atlassian.net/browse/TMA-XX)

## Description
<!--- Describe your changes in detail -->

## Packages added (using `yarn add` or `yarn add --dev`)
<!--- List all packages that were added in this PR and provide a succinct explanation of their use cases -->
- **package-name** — Use case of package within project

## How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->

## Screenshots (if appropriate)

## 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 change)
- [ ] Documentation/repository update

## 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! -->
- [ ] I thoroughly tested my changes and ensured that they integrate with existing functionality.
- [ ] I ran `yarn lint` to make sure my code adheres to standard style expectations.
- [ ] I ran `git pull --rebase upstream master` in my branch and resolved any merge conflicts on my end.
- [ ] I clearly documented and detailed my code where I deemed it necessary to do so.
- [ ] My changes require a change to the documentation...
  - [ ] ... which I have updated accordingly.