aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/pull_request_template.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
new file mode 100644
index 000000000..e312c0f77
--- /dev/null
+++ b/.github/pull_request_template.md
@@ -0,0 +1,40 @@
+# Pull Request Details
+<!--- The title of the PR should summarize the change implemented. -->
+<!--- Example commit message format: -->
+<!--- `product: summary of change` -->
+<!--- (leave blank) -->
+<!--- `details of what/why/how an issue was addressed` -->
+<!--- Keep subject lines to 50 characters, and other lines to 72 -->
+<!--- characters. Refer to the "Revision Control Hygiene" section -->
+<!--- CODING.md for more details. -->
+
+## Description
+<!--- Provide a general summary of your changes in the title above -->
+<!--- Why is this change required? What problem does it solve? -->
+
+## Related Issue
+<!--- Refer to any related issues here -->
+<!--- If this PR fully addresses an issue, please say "Fixes #1234", -->
+<!--- as this will allow Github to automatically close the related Issue -->
+
+## Which devices/areas does this affect?
+<!--- Include devices that are affected and some details on what -->
+<!--- areas these changes affect, such as RF performance. -->
+
+## Testing Done
+<!--- 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. Then, include justifications for how your tests -->
+<!--- demonstrate those affects. -->
+
+## Checklist
+
+<!--- Go over all the following points, and put an `x` in all the
+<!--- boxes that apply. Note that some of these may not be valid -->
+<!--- for all PRs. -->
+
+- [ ] I have read the CONTRIBUTING document.
+- [ ] My code follows the code style of this project. See CODING.md.
+- [ ] I have updated the documentation accordingly.
+- [ ] I have added tests to cover my changes, and all previous tests pass.