You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pull_request_template.md 2.2 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!--- Provide a general summary of your changes in the Title above -->
  2. ### Description
  3. <!--- Describe your changes in detail -->
  4. ### Motivation and Context
  5. <!--- Why is this change required? What problem does it solve? -->
  6. <!--- If it fixes an open issue, please link to the issue here. -->
  7. <!--- Use the magic "Fixes #1234" format, so the issues are -->
  8. <!--- automatically closed when this PR is merged. -->
  9. ### How Has This Been Tested?
  10. <!--- Please describe in detail how you manually tested your changes. -->
  11. <!--- Include details of your testing environment, and the tests you ran to -->
  12. <!--- see how your change affects other areas of the code, etc. -->
  13. ### Screenshots (if appropriate):
  14. ## Checklist
  15. <!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
  16. <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
  17. ### My PR contains...
  18. <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
  19. - [ ] No code changes (`src/` is unmodified: changes to documentation, CI, metadata, etc.)
  20. - [ ] Dependency changes (any modification to dependencies in `package.json`)
  21. - [ ] Bug fixes (non-breaking change which fixes an issue)
  22. - [ ] Improvements (misc. changes to existing features)
  23. - [ ] Features (non-breaking change which adds functionality)
  24. ### My changes...
  25. - [ ] are breaking changes to a public API (config options, System API, major UI change, etc).
  26. - [ ] are breaking changes to a private API (Redux, component props, utility functions, etc.).
  27. - [ ] are breaking changes to a developer API (npm script behavior changes, new dev system dependencies, etc).
  28. - [ ] are not breaking changes.
  29. ### Documentation
  30. - [ ] My changes do not require a change to the project documentation.
  31. - [ ] My changes require a change to the project documentation.
  32. - [ ] If yes to above: I have updated the documentation accordingly.
  33. ### Automated tests
  34. - [ ] My changes can not or do not need to be tested.
  35. - [ ] My changes can and should be tested by unit and/or integration tests.
  36. - [ ] If yes to above: I have added tests to cover my changes.
  37. - [ ] If yes to above: I have taken care to cover edge cases in my tests.
  38. - [ ] All new and existing tests passed.