diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index d0353756c3..0000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[BUG]" -labels: bug -assignees: "" ---- - -**Describe the bug / 描述问题** -A clear and concise description of what the bug is. -清晰简洁地描述问题是什么。 - -**To Reproduce / 复现步骤** -Steps to reproduce the behavior / 描述如何重现问题: - -1. Go to / 转到 '...' -2. Click on/点击 '....' -3. Scroll down to / 滚动到 '....' -4. See error / 出现错误 - -**Expected behavior / 期望行为** -A clear and concise description of what you expected to happen. -清晰简洁地描述你期望发生的事情。 - -**Screenshots / 截图** -If applicable, add screenshots to help explain your problem. -如果需要,请添加截图以帮助解释你的问题。 - -**Devtools Info / 开发者工具信息** -In ChatALL menu, click View->Toggle Developer Tools to open devtools. Paste any suspicious info here. -在 ChatALL 菜单中,点击“查看”->“切换开发者工具”来打开开发者工具。将任何可疑信息粘贴到这里。 - -**Versions / 版本** - -- OS and version / 操作系统版本: [e.g. Windows 11, Ubuntu Linux 22.04, macOS 13.3.1] -- ChatALL version / ChatALL 版本 - -**Network / 网络** -Are you using a VPN or proxy? -是否在使用 VPN 或代理? - -**Additional context / 其它相关信息** -Add any other context about the problem here. -在此添加有关问题的任何其他相关信息。 diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000000..9e5c48cead --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,87 @@ +name: Bug Report +description: Create a report to help us improve +title: "[BUG]" +labels: [bug] + +body: + - type: textarea + attributes: + label: Describe the bug / 描述问题 + description: | + A clear and concise description of what the bug is. + 清晰简洁地描述问题是什么。 + validations: + required: true + + - type: textarea + attributes: + label: To Reproduce / 复现步骤 + description: | + Steps to reproduce the behavior + 描述如何重现问题 + placeholder: | + 1. Go to / 转到 '...' + 2. Click on/点击 '....' + 3. Scroll down to / 滚动到 '....' + 4. See error / 出现错误 + validations: + required: true + + - type: textarea + attributes: + label: Expected behavior / 期望行为 + description: | + A clear and concise description of what you expected to happen. + 清晰简洁地描述你期望发生的事情。 + validations: + required: true + + - type: textarea + attributes: + label: Screenshots / 截图 + description: | + If applicable, add screenshots to help explain your problem. + 如果需要,请添加截图以帮助解释你的问题。 + validations: + required: true + + - type: textarea + attributes: + label: Devtools Info / 开发者工具信息 + placeholder: | + In ChatALL menu, click View->Toggle Developer Tools to open devtools. Paste any suspicious info here. + 在 ChatALL 菜单中,点击“查看”->“切换开发者工具”来打开开发者工具。将任何可疑信息粘贴到这里。 + validations: + required: true + + - type: input + attributes: + label: OS and version / 操作系统版本 + placeholder: Windows 11, Ubuntu Linux 22.04, macOS 13.3.1 + validations: + required: true + + - type: input + attributes: + label: ChatALL version / ChatALL 版本 + placeholder: v1.36.53 + validations: + required: true + + - type: input + attributes: + label: Network / 网络 + description: | + Are you using a VPN or proxy? + 是否在使用 VPN 或代理? + validations: + required: true + + - type: textarea + attributes: + label: Additional context / 其它相关信息 + description: | + Add any other context about the problem here. + 在此添加有关问题的任何其他相关信息。 + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index f3615edb5a..0000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: "[FEAT]" -labels: enhancement -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000000..ad04c73b26 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,33 @@ +name: Feature request +description: Suggest an idea for this project +title: "[FEAT]" +labels: enhancement + +body: + - type: textarea + attributes: + label: Is your feature request related to a problem? Please describe. + description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + validations: + required: true + + - type: textarea + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. + validations: + required: true + + - type: textarea + attributes: + label: Describe alternatives you've considered. + description: A clear and concise description of any alternative solutions or features you've considered. + validations: + required: true + + - type: textarea + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here. + validations: + required: false