chore: add GitHub issue templates

[skip ci]
This commit is contained in:
genteure 2022-10-05 22:32:59 +08:00
parent b84162b6c3
commit 473dababf8
3 changed files with 53 additions and 1 deletions

View File

@ -11,7 +11,7 @@ indent_size = 4
charset = utf-8
insert_final_newline = true
[*.yml]
[*.{yml,yaml}]
indent_size = 2

41
.github/ISSUE_TEMPLATE/bug.yaml vendored Normal file
View File

@ -0,0 +1,41 @@
name: Bug Report
description: 提交 Bug
body:
- type: dropdown
id: recorder-build
attributes:
label: Platforms
description: 你使用的是哪个平台的录播姬?
multiple: true
options:
- WPF (桌面版)
- Docker
- CLI - Windows
- CLI - Linux
- CLI - macOS
validations:
required: true
- type: input
id: recorder-version
attributes:
label: Version
description: 你使用的录播姬版本是?
placeholder: "例: v2.5.0"
validations:
required: true
- type: textarea
id: description
attributes:
label: Description
description: 请描述你遇到的问题
render: Markdown
validations:
required: true
- type: textarea
id: recorder-log
attributes:
label: Logs
description: 请将录播姬的日志粘贴在这里(如果有的话)
render: JSON
validations:
required: false

11
.github/ISSUE_TEMPLATE/feature.yaml vendored Normal file
View File

@ -0,0 +1,11 @@
name: Feature Request
description: 提交新功能建议
body:
- type: textarea
id: description
attributes:
label: Feature Description
description: 请描述你想要的功能
render: Markdown
validations:
required: true