|
24 | 24 |
|
25 | 25 |
|
26 | 26 |
|
27 | | -### Types of changes |
28 | | -<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> |
29 | | -- [ ] No code changes (changes to documentation, CI, metadata, etc) |
30 | | -- [ ] Dependency changes (any modification to dependencies in `package.json`) |
31 | | -- [ ] Bug fix (non-breaking change which fixes an issue) |
32 | | -- [ ] New feature (non-breaking change which adds functionality) |
33 | | -- [ ] Breaking change (fix or feature that would cause existing functionality to change) |
34 | | - |
35 | | -### Checklist: |
| 27 | +## Checklist |
36 | 28 | <!--- Go over all the following points, and put an `x` in all the boxes that apply. --> |
37 | 29 | <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> |
38 | | -- [ ] My code follows the code style of this project. |
39 | | -- [ ] My change requires a change to the documentation. |
40 | | -- [ ] I have updated the documentation accordingly. |
41 | | -- [ ] I have added tests to cover my changes. |
| 30 | + |
| 31 | +### My PR contains... |
| 32 | +<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> |
| 33 | +- [ ] No code changes (`src/` is unmodified: changes to documentation, CI, metadata, etc.) |
| 34 | +- [ ] Dependency changes (any modification to dependencies in `package.json`) |
| 35 | +- [ ] Bug fixes (non-breaking change which fixes an issue) |
| 36 | +- [ ] Improvements (misc. changes to existing features) |
| 37 | +- [ ] Features (non-breaking change which adds functionality) |
| 38 | + |
| 39 | +### My changes... |
| 40 | +- [ ] are breaking changes to a public API (config options, System API, major UI change, etc). |
| 41 | +- [ ] are breaking changes to a private API (Redux, component props, utility functions, etc.). |
| 42 | +- [ ] are breaking changes to a developer API (npm script behavior changes, new dev system dependencies, etc). |
| 43 | +- [ ] are not breaking changes. |
| 44 | + |
| 45 | +### Documentation |
| 46 | +- [ ] My changes do not require a change to the project documentation. |
| 47 | +- [ ] My changes require a change to the project documentation. |
| 48 | +- [ ] If yes to above: I have updated the documentation accordingly. |
| 49 | + |
| 50 | +### Automated tests |
| 51 | +- [ ] My changes can not or do not need to be tested. |
| 52 | +- [ ] My changes can and should be tested by unit and/or integration tests. |
| 53 | +- [ ] If yes to above: I have added tests to cover my changes. |
| 54 | +- [ ] If yes to above: I have taken care to cover edge cases in my tests. |
42 | 55 | - [ ] All new and existing tests passed. |
0 commit comments