diff options
author | Tobias Nießen <tniessen@users.noreply.github.com> | 2018-08-09 16:59:55 +0200 |
---|---|---|
committer | James M Snell <jasnell@gmail.com> | 2018-08-12 10:18:40 -0700 |
commit | 3ce92755eb099c80f03a5f3a46dadf66fddd16b2 (patch) | |
tree | 3ed9c0ae24598ae54ca39e79c6809dc22a089063 /.github | |
parent | 45d0b4a300cbc845727fee75c59427cc343b1559 (diff) | |
download | node-new-3ce92755eb099c80f03a5f3a46dadf66fddd16b2.tar.gz |
doc: add multiple issue templates for GitHub
Fixes: https://github.com/nodejs/node/issues/21812
PR-URL: https://github.com/nodejs/node/pull/22215
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: George Adams <george.adams@uk.ibm.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/1-bug-report.md | 24 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/2-feature-request.md | 20 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/3-help.md | 10 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/4-nodejs-org.md | 11 |
4 files changed, 65 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/1-bug-report.md b/.github/ISSUE_TEMPLATE/1-bug-report.md new file mode 100644 index 0000000000..69b9bf6325 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1-bug-report.md @@ -0,0 +1,24 @@ +--- +name: "\U0001F41B Bug report" +about: Create a report to help us improve + +--- + +<!-- +Thank you for reporting a possible bug in Node.js. + +Please fill in as much of the template below as you can. + +Version: output of `node -v` +Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows) +Subsystem: if known, please specify the affected core module name + +If possible, please provide code that demonstrates the problem, keeping it as +simple and free of external dependencies as you can. +--> + +* **Version**: +* **Platform**: +* **Subsystem**: + +<!-- Please provide more details below this comment. --> diff --git a/.github/ISSUE_TEMPLATE/2-feature-request.md b/.github/ISSUE_TEMPLATE/2-feature-request.md new file mode 100644 index 0000000000..0d40bfdd11 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2-feature-request.md @@ -0,0 +1,20 @@ +--- +name: "\U0001F680 Feature request" +about: Suggest an idea for this project + +--- + +<!-- +Thank you for suggesting an idea to make Node.js better. + +Please fill in as much of the template below as you're able. +--> + +**Is your feature request related to a problem? Please describe.** +Please describe the problem you are trying to solve. + +**Describe the solution you'd like** +Please describe the desired behavior. + +**Describe alternatives you've considered** +Please describe alternative solutions or features you have considered. diff --git a/.github/ISSUE_TEMPLATE/3-help.md b/.github/ISSUE_TEMPLATE/3-help.md new file mode 100644 index 0000000000..f1a1acdfc7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/3-help.md @@ -0,0 +1,10 @@ +--- +name: "⁉️ Need help with Node.js?" +about: Please file an issue in our help repo. + +--- + +If you have a question about Node.js that is not a bug report or feature +request, please post it in https://github.com/nodejs/help! + +Questions posted to this repository will be closed. diff --git a/.github/ISSUE_TEMPLATE/4-nodejs-org.md b/.github/ISSUE_TEMPLATE/4-nodejs-org.md new file mode 100644 index 0000000000..917e560a50 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/4-nodejs-org.md @@ -0,0 +1,11 @@ +--- +name: "\U0001F310 Found a problem with nodejs.org?" +about: Please file an issue in the Node.js website repo. + +--- + +If you have a question, suggestion or issue regarding our website, +please post it in https://github.com/nodejs/nodejs.org! + +Issues with the Node.js API documentation should be posted here. All other +issues regarding the website will be closed. |