From 166a1dc81f42310bbabe8051fa858f289fd21774 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Thu, 9 Aug 2018 16:59:55 +0200 Subject: [PATCH 1/4] doc: add multiple issue templates fr GitHub Fixes: https://github.com/nodejs/node/issues/21812 --- .github/ISSUE_TEMPLATE/---bug-report.md | 24 +++++++++++++++++++ .github/ISSUE_TEMPLATE/---feature-request.md | 20 ++++++++++++++++ .../---found-a-problem-with-nodejs-org-.md | 8 +++++++ .../---need-help-with-node-js-.md | 8 +++++++ 4 files changed, 60 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/---bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/---feature-request.md create mode 100644 .github/ISSUE_TEMPLATE/---found-a-problem-with-nodejs-org-.md create mode 100644 .github/ISSUE_TEMPLATE/---need-help-with-node-js-.md diff --git a/.github/ISSUE_TEMPLATE/---bug-report.md b/.github/ISSUE_TEMPLATE/---bug-report.md new file mode 100644 index 00000000000000..19b9f769d2b4d0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/---bug-report.md @@ -0,0 +1,24 @@ +--- +name: "\U0001F41B Bug report" +about: Create a report to help us improve + +--- + + + +* **Version**: +* **Platform**: +* **Subsystem**: + + diff --git a/.github/ISSUE_TEMPLATE/---feature-request.md b/.github/ISSUE_TEMPLATE/---feature-request.md new file mode 100644 index 00000000000000..0d40bfdd110b93 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/---feature-request.md @@ -0,0 +1,20 @@ +--- +name: "\U0001F680 Feature request" +about: Suggest an idea for this project + +--- + + + +**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/---found-a-problem-with-nodejs-org-.md b/.github/ISSUE_TEMPLATE/---found-a-problem-with-nodejs-org-.md new file mode 100644 index 00000000000000..a3a3ef41b71084 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/---found-a-problem-with-nodejs-org-.md @@ -0,0 +1,8 @@ +--- +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! diff --git a/.github/ISSUE_TEMPLATE/---need-help-with-node-js-.md b/.github/ISSUE_TEMPLATE/---need-help-with-node-js-.md new file mode 100644 index 00000000000000..b2cf195c5153d1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/---need-help-with-node-js-.md @@ -0,0 +1,8 @@ +--- +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! From 6c89ac91268efeadea27eec895b84d4394f43f55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Fri, 10 Aug 2018 18:07:03 +0200 Subject: [PATCH 2/4] Address sagirk's comments --- .github/ISSUE_TEMPLATE/---bug-report.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/---bug-report.md b/.github/ISSUE_TEMPLATE/---bug-report.md index 19b9f769d2b4d0..59a9e5c6dbf482 100644 --- a/.github/ISSUE_TEMPLATE/---bug-report.md +++ b/.github/ISSUE_TEMPLATE/---bug-report.md @@ -11,7 +11,7 @@ Please fill in as much of the template below as you're able. Version: output of `node -v` Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows) -Subsystem: if known, please specify affected core module name +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 are able. @@ -21,4 +21,4 @@ simple and free of external dependencies as you are able. * **Platform**: * **Subsystem**: - + From e456e4bae7b9ec46813f426b1746664dcb02b7b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Fri, 10 Aug 2018 18:47:43 +0200 Subject: [PATCH 3/4] Address BridgeAR's nits --- .github/ISSUE_TEMPLATE/---bug-report.md | 4 ++-- .github/ISSUE_TEMPLATE/---found-a-problem-with-nodejs-org-.md | 3 +++ .github/ISSUE_TEMPLATE/---need-help-with-node-js-.md | 2 ++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/---bug-report.md b/.github/ISSUE_TEMPLATE/---bug-report.md index 59a9e5c6dbf482..69b9bf63250f7b 100644 --- a/.github/ISSUE_TEMPLATE/---bug-report.md +++ b/.github/ISSUE_TEMPLATE/---bug-report.md @@ -7,14 +7,14 @@ about: Create a report to help us improve * **Version**: diff --git a/.github/ISSUE_TEMPLATE/---found-a-problem-with-nodejs-org-.md b/.github/ISSUE_TEMPLATE/---found-a-problem-with-nodejs-org-.md index a3a3ef41b71084..917e560a50c08e 100644 --- a/.github/ISSUE_TEMPLATE/---found-a-problem-with-nodejs-org-.md +++ b/.github/ISSUE_TEMPLATE/---found-a-problem-with-nodejs-org-.md @@ -6,3 +6,6 @@ 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. diff --git a/.github/ISSUE_TEMPLATE/---need-help-with-node-js-.md b/.github/ISSUE_TEMPLATE/---need-help-with-node-js-.md index b2cf195c5153d1..f1a1acdfc70ba0 100644 --- a/.github/ISSUE_TEMPLATE/---need-help-with-node-js-.md +++ b/.github/ISSUE_TEMPLATE/---need-help-with-node-js-.md @@ -6,3 +6,5 @@ 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. From ae8c26b651cfa18ea41feb89f556042c4fda6460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Fri, 10 Aug 2018 18:48:45 +0200 Subject: [PATCH 4/4] Rename issue templates --- .github/ISSUE_TEMPLATE/{---bug-report.md => 1-bug-report.md} | 0 .../{---feature-request.md => 2-feature-request.md} | 0 .../ISSUE_TEMPLATE/{---need-help-with-node-js-.md => 3-help.md} | 0 .../{---found-a-problem-with-nodejs-org-.md => 4-nodejs-org.md} | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{---bug-report.md => 1-bug-report.md} (100%) rename .github/ISSUE_TEMPLATE/{---feature-request.md => 2-feature-request.md} (100%) rename .github/ISSUE_TEMPLATE/{---need-help-with-node-js-.md => 3-help.md} (100%) rename .github/ISSUE_TEMPLATE/{---found-a-problem-with-nodejs-org-.md => 4-nodejs-org.md} (100%) diff --git a/.github/ISSUE_TEMPLATE/---bug-report.md b/.github/ISSUE_TEMPLATE/1-bug-report.md similarity index 100% rename from .github/ISSUE_TEMPLATE/---bug-report.md rename to .github/ISSUE_TEMPLATE/1-bug-report.md diff --git a/.github/ISSUE_TEMPLATE/---feature-request.md b/.github/ISSUE_TEMPLATE/2-feature-request.md similarity index 100% rename from .github/ISSUE_TEMPLATE/---feature-request.md rename to .github/ISSUE_TEMPLATE/2-feature-request.md diff --git a/.github/ISSUE_TEMPLATE/---need-help-with-node-js-.md b/.github/ISSUE_TEMPLATE/3-help.md similarity index 100% rename from .github/ISSUE_TEMPLATE/---need-help-with-node-js-.md rename to .github/ISSUE_TEMPLATE/3-help.md diff --git a/.github/ISSUE_TEMPLATE/---found-a-problem-with-nodejs-org-.md b/.github/ISSUE_TEMPLATE/4-nodejs-org.md similarity index 100% rename from .github/ISSUE_TEMPLATE/---found-a-problem-with-nodejs-org-.md rename to .github/ISSUE_TEMPLATE/4-nodejs-org.md