feat(issue_template): 更新功能请求和问题模板,增加数据库类型和版本输入
This commit is contained in:
parent
64a46deba1
commit
058bbf72cc
|
|
@ -6,7 +6,16 @@ body:
|
|||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
好的建议最好说明使用场景和期望效果。请尽量避免只写“支持 X”。
|
||||
好的建议最好说明使用场景、数据库类型和期望效果。请尽量避免只写“支持 X”。
|
||||
|
||||
- type: input
|
||||
id: database
|
||||
attributes:
|
||||
label: 数据库类型和版本
|
||||
description: 如果是通用功能,请填写“通用”。如果只影响特定数据源,请注明数据库类型、版本或发行版。
|
||||
placeholder: "例如:PostgreSQL 16.2 / MySQL 8.0 / Redis 7.2 / 通用"
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: problem
|
||||
|
|
@ -43,4 +52,4 @@ body:
|
|||
id: extra
|
||||
attributes:
|
||||
label: 补充信息
|
||||
description: 参考截图、相关数据库类型、替代方案等。
|
||||
description: 参考截图、替代方案、特殊环境等。
|
||||
|
|
|
|||
|
|
@ -3,6 +3,36 @@ description: Usage questions, configuration issues, or feedback you're not sure
|
|||
title: "[❓ Question] "
|
||||
labels: ["question"]
|
||||
body:
|
||||
- type: input
|
||||
id: database
|
||||
attributes:
|
||||
label: 数据库类型和版本
|
||||
description: 如果问题与数据库无关,请填写“无关”。否则请注明数据库类型、版本或发行版。
|
||||
placeholder: "例如:PostgreSQL 16.2 / MySQL 8.0 / Redis 7.2 / 无关"
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
id: app-version
|
||||
attributes:
|
||||
label: DBX 版本
|
||||
placeholder: "例如:v0.1.0"
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: dropdown
|
||||
id: os
|
||||
attributes:
|
||||
label: 操作系统
|
||||
multiple: true
|
||||
options:
|
||||
- macOS
|
||||
- Windows
|
||||
- Linux
|
||||
- 其他
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: goal
|
||||
attributes:
|
||||
|
|
@ -16,8 +46,7 @@ body:
|
|||
id: context
|
||||
attributes:
|
||||
label: 环境信息
|
||||
description: 数据库类型和版本、操作系统、DBX 版本等。
|
||||
description: 连接方式、特殊环境、已尝试的排查方式等。
|
||||
placeholder: |
|
||||
DBX 版本:
|
||||
操作系统:
|
||||
数据库:
|
||||
连接方式:
|
||||
补充环境:
|
||||
|
|
|
|||
Loading…
Reference in New Issue