From acd9027190e22148d95d8ed12cb144d96d38fc80 Mon Sep 17 00:00:00 2001 From: Open-Set-Go Date: Sun, 7 Apr 2024 16:42:51 +0900 Subject: [PATCH 1/4] =?UTF-8?q?Issue=20Template=20generated=20by=20Open-Se?= =?UTF-8?q?t-Go=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 From 115fb89aa7e29040251048fb026f2b7a164eb6bf Mon Sep 17 00:00:00 2001 From: ymw0407 Date: Sun, 7 Apr 2024 16:46:23 +0900 Subject: [PATCH 2/4] Fix : Issue Template customized Signed-off-by: ymw0407 --- .github/ISSUE_TEMPLATE/Bug_Report.yml | 21 ++++----------------- .github/ISSUE_TEMPLATE/Feature_Request.yml | 8 ++++---- 2 files changed, 8 insertions(+), 21 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/Bug_Report.yml b/.github/ISSUE_TEMPLATE/Bug_Report.yml index c8cee39..b3fc5df 100644 --- a/.github/ISSUE_TEMPLATE/Bug_Report.yml +++ b/.github/ISSUE_TEMPLATE/Bug_Report.yml @@ -2,8 +2,8 @@ name: ":bug: Bug Report" description: "Report a Bug" title: ":bug: [Bug] - " -labels: [] -assignees: [] +labels: ["bug"] +assignees: ["ymw0407"] body: - type: markdown @@ -11,24 +11,11 @@ body: 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 + description: Version of `github.com/ymw0407/jamo` - type: textarea attributes: label: What steps will reproduce the bug? @@ -49,4 +36,4 @@ body: - type: textarea attributes: label: Additional information - description: Tell us anything else you think we should know. \ No newline at end of file + description: Tell us anything else you think we should know. diff --git a/.github/ISSUE_TEMPLATE/Feature_Request.yml b/.github/ISSUE_TEMPLATE/Feature_Request.yml index e238ab5..c3c0af0 100644 --- a/.github/ISSUE_TEMPLATE/Feature_Request.yml +++ b/.github/ISSUE_TEMPLATE/Feature_Request.yml @@ -2,8 +2,8 @@ name: ":rocket: Feature Request" description: "Request a new feature" title: ":rocket: [Feature Request] - " -labels: [] -assignees: [] +labels: ["bug"] +assignees: ["ymw0407"] body: - type: textarea @@ -20,7 +20,7 @@ body: label: "Reasons" description: Explain why this function is necessary. validations: - required: true + required: true - type: textarea id: how-to @@ -46,4 +46,4 @@ body: - label: Have no effect on other functions required: false - label: Other functions need to be changed - required: false \ No newline at end of file + required: false From fbfc68168b2558c35c99789d205a76bb8c7fb51c Mon Sep 17 00:00:00 2001 From: ymw0407 Date: Sun, 7 Apr 2024 16:47:33 +0900 Subject: [PATCH 3/4] Chore : issue template's description added Signed-off-by: ymw0407 --- .github/ISSUE_TEMPLATE/Bug_Report.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/Bug_Report.yml b/.github/ISSUE_TEMPLATE/Bug_Report.yml index b3fc5df..0dc69f4 100644 --- a/.github/ISSUE_TEMPLATE/Bug_Report.yml +++ b/.github/ISSUE_TEMPLATE/Bug_Report.yml @@ -23,6 +23,7 @@ body: - type: textarea attributes: label: How often does it reproduce? Is there a required condition? + description: If possible please provide textual output instead of screenshots. - type: textarea attributes: label: What is the expected behavior? Why is that the expected behavior? From dba2ccf74d9ad6e3aa6634caf3986751a62ea119 Mon Sep 17 00:00:00 2001 From: ymw0407 Date: Sun, 7 Apr 2024 16:49:15 +0900 Subject: [PATCH 4/4] Fix : issueTemplate's typo fixed Signed-off-by: ymw0407 --- .github/ISSUE_TEMPLATE/Bug_Report.yml | 4 ++-- .github/ISSUE_TEMPLATE/Feature_Request.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/Bug_Report.yml b/.github/ISSUE_TEMPLATE/Bug_Report.yml index 0dc69f4..4b5b781 100644 --- a/.github/ISSUE_TEMPLATE/Bug_Report.yml +++ b/.github/ISSUE_TEMPLATE/Bug_Report.yml @@ -1,7 +1,7 @@ --- -name: ":bug: Bug Report" +name: "🐛 Bug Report" description: "Report a Bug" -title: ":bug: [Bug] - " +title: "🐛 [Bug] - " labels: ["bug"] assignees: ["ymw0407"] diff --git a/.github/ISSUE_TEMPLATE/Feature_Request.yml b/.github/ISSUE_TEMPLATE/Feature_Request.yml index c3c0af0..2b23183 100644 --- a/.github/ISSUE_TEMPLATE/Feature_Request.yml +++ b/.github/ISSUE_TEMPLATE/Feature_Request.yml @@ -1,8 +1,8 @@ --- -name: ":rocket: Feature Request" +name: "🚀 Feature Request" description: "Request a new feature" -title: ":rocket: [Feature Request] - " -labels: ["bug"] +title: "🚀 [Feature Request] - " +labels: ["enhancement"] assignees: ["ymw0407"] body: