From 5736acc8711b843756a2c0f8d86e939b28c5e02d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=81=E4=BA=94=E4=BE=BF=E5=A3=AB?= <95488710+Maxwell-Code07@users.noreply.github.com> Date: Sat, 16 May 2026 20:17:22 +0800 Subject: [PATCH] feat: add question/consultation issue template Add a question template for issue submissions with categories and fields for detailed inquiries. --- .github/ISSUE_TEMPLATE/question.yml | 37 +++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/question.yml diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml new file mode 100644 index 0000000..dcdc415 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -0,0 +1,37 @@ +name: ❓ Question / Consultation +description: Ask a question about usage or community | 使用咨询或社区相关问题 +title: "[Question] " +labels: ["question"] +assignees: [] + +body: + - type: dropdown + id: question-type + attributes: + label: Question Category | 问题类别 + description: Select the category that best describes your question | 选择最符合你问题的类别 + options: + - Usage / How-to | 使用方式咨询 + - Compatibility / Integration | 兼容性 / 集成确认 + - Community / Group | 社区 / 群组相关 + - Other | 其他 + validations: + required: true + + - type: textarea + id: question-description + attributes: + label: Your Question | 你的问题 + description: Describe your question clearly | 请清晰描述你的问题 + placeholder: e.g. Does the memory plugin work with OpenClaw? | 例如:记忆插件是否支持 OpenClaw? + validations: + required: true + + - type: textarea + id: context + attributes: + label: Context / Background | 背景信息 + description: Any context that helps us understand your question better | 有助于我们理解你问题的背景信息 + placeholder: e.g. your use case, environment, what you've tried | 例如:你的使用场景、环境、已尝试的方案等 + validations: + required: false