diff --git a/.editorconfig b/.editorconfig index 7bc14d8..c00b3a5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,7 +11,7 @@ indent_size = 4 charset = utf-8 insert_final_newline = true -[*.yml] +[*.{yml,yaml}] indent_size = 2 diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 0000000..609f7b2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml new file mode 100644 index 0000000..49bd471 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -0,0 +1,11 @@ +name: Feature Request +description: 提交新功能建议 +body: + - type: textarea + id: description + attributes: + label: Feature Description + description: 请描述你想要的功能 + render: Markdown + validations: + required: true