summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFedor Indutny <fedor@indutny.com>2016-02-17 15:48:00 -0500
committerFedor Indutny <fedor@indutny.com>2016-02-23 00:36:45 -0500
commit81e35b5a2956604a6a3b9bb795a74a342702cc12 (patch)
treea54a492fe7469ce338524dc7623a28d9b9b7f9a6 /.github
parentbbf46215489b15a79468ba26b233219bb6a3e41f (diff)
downloadandroid-node-v8-81e35b5a2956604a6a3b9bb795a74a342702cc12.tar.gz
android-node-v8-81e35b5a2956604a6a3b9bb795a74a342702cc12.tar.bz2
android-node-v8-81e35b5a2956604a6a3b9bb795a74a342702cc12.zip
github: add issue and pull request templates
Fix: #5246 PR-URL: https://github.com/nodejs/node/pull/5291 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Steven R. Loomis <srloomis@us.ibm.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Brian White <mscdex@mscdex.net>
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE.md14
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md24
2 files changed, 38 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000000..0d10c2a841
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,14 @@
+_Thanks for wanting to report an issue you've found in Node.js. Please delete
+this text and fill in the template below. If unsure about something, just do as
+best as you're able._
+
+_Note that it will be much easier for us to fix the issue if a test case that
+reproduces the problem is provided. Ideally this test case should not have any
+external dependencies. We understand that it is not always possible to reduce
+your code to a small test case, but we would appreciate to have as much data as
+possible. Thank you!_
+
+* **Version**: _output of `node -v`_
+* **Platform**: _either `uname -a` output, or if Windows, version and 32-bit or
+ 64-bit_
+* **Subsystem**: _optional. if known - please specify affected core module name_
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000000..212ea943c8
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,24 @@
+### Description of change
+
+_Please provide a description of the change here._
+
+### Pull Request check-list
+
+_Please make sure to review and check all of these items:_
+
+- [ ] Does `make -j8 test` (UNIX) or `vcbuild test nosign` (Windows) pass with
+ this change (including linting)?
+- [ ] Is the commit message formatted according to [CONTRIBUTING.md][0]?
+- [ ] If this change fixes a bug (or a performance problem), is a regression
+ test (or a benchmark) included?
+- [ ] Is a documentation update included (if this change modifies
+ existing APIs, or introduces new ones)?
+
+_NOTE: these things are not required to open a PR and can be done afterwards /
+while the PR is open._
+
+### Affected core subsystem(s)
+
+_Please provide affected core subsystem(s) (like buffer, cluster, crypto, etc)_
+
+[0]: https://github.com/nodejs/node/blob/master/CONTRIBUTING.md#step-3-commit