From acd9027190e22148d95d8ed12cb144d96d38fc80 Mon Sep 17 00:00:00 2001 From: Open-Set-Go Date: Sun, 7 Apr 2024 16:42:51 +0900 Subject: [PATCH] =?UTF-8?q?Issue=20Template=20generated=20by=20Open-Set-Go?= =?UTF-8?q?=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/Bug_Report.yml | 52 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/Feature_Request.yml | 49 ++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/Bug_Report.yml create mode 100644 .github/ISSUE_TEMPLATE/Feature_Request.yml diff --git a/.github/ISSUE_TEMPLATE/Bug_Report.yml b/.github/ISSUE_TEMPLATE/Bug_Report.yml new file mode 100644 index 0000000..c8cee39 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Bug_Report.yml @@ -0,0 +1,52 @@ +--- +name: ":bug: Bug Report" +description: "Report a Bug" +title: ":bug: [Bug] - " +labels: [] +assignees: [] + +body: + - type: markdown + attributes: + value: | + Thank you for reporting an issue. + + This issue tracker is for bugs and issues found within Node.js core. + If you require more general support please file an issue on our help repo. https://github.com/nodejs/help + + Please fill in as much of the following form as you're able. + - type: input + attributes: + label: Version + description: Output of `node -v` + - type: input + attributes: + label: Platform + description: | + UNIX: output of `uname -a` + Windows: output of `"$([Environment]::OSVersion.VersionString) $(('x86', 'x64')[[Environment]::Is64BitOperatingSystem])"` in PowerShell console + - type: input + attributes: + label: Subsystem + description: If known, please specify affected core module name + - type: textarea + attributes: + label: What steps will reproduce the bug? + description: Enter details about your bug, preferably a simple code snippet that can be run using `node` directly without installing third-party dependencies. + - type: textarea + attributes: + label: How often does it reproduce? Is there a required condition? + - type: textarea + attributes: + label: What is the expected behavior? Why is that the expected behavior? + description: If possible please provide textual output instead of screenshots. + - type: textarea + attributes: + label: What do you see instead? + description: If possible please provide textual output instead of screenshots. + validations: + required: true + - type: textarea + attributes: + label: Additional information + description: Tell us anything else you think we should know. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/Feature_Request.yml b/.github/ISSUE_TEMPLATE/Feature_Request.yml new file mode 100644 index 0000000..e238ab5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Feature_Request.yml @@ -0,0 +1,49 @@ +--- +name: ":rocket: Feature Request" +description: "Request a new feature" +title: ":rocket: [Feature Request] - " +labels: [] +assignees: [] + +body: + - type: textarea + id: description + attributes: + label: "Describe" + description: A brief and clear description of the features you are proposing. + validations: + required: true + + - type: textarea + id: reasons + attributes: + label: "Reasons" + description: Explain why this function is necessary. + validations: + required: true + + - type: textarea + id: how-to + attributes: + label: "How to Implement Features" + description: Describe how to implement the function. + validations: + required: false + + - type: textarea + id: additional + attributes: + label: "Additional Explanation" + description: Fill out additional parts or reference links that you need to know. + validations: + required: false + + - type: checkboxes + id: connection + attributes: + label: "Connection" + options: + - label: Have no effect on other functions + required: false + - label: Other functions need to be changed + required: false \ No newline at end of file