aboutsummaryrefslogtreecommitdiffstats
path: root/.github/pull_request_template.md
diff options
context:
space:
mode:
authorSugandha Gupta <sugandha.gupta@ettus.com>2018-12-05 12:16:47 -0800
committerBrent Stapleton <brent.stapleton@ettus.com>2018-12-19 16:44:16 -0800
commit639f3b3f3c636c9a62fa89fa887ac1890e8f1826 (patch)
tree7ca639bf318f38973e897e8e6491b4f862c76437 /.github/pull_request_template.md
parent5a5f604994902770382f0aa8447a511077160a28 (diff)
downloaduhd-639f3b3f3c636c9a62fa89fa887ac1890e8f1826.tar.gz
uhd-639f3b3f3c636c9a62fa89fa887ac1890e8f1826.tar.bz2
uhd-639f3b3f3c636c9a62fa89fa887ac1890e8f1826.zip
Github: Create Pull Request Template
Adding pull_request_template.md, which is used by Github as a template for pull requests.
Diffstat (limited to '.github/pull_request_template.md')
-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.