-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Ask For Help | ||
title: '[Help] ' | ||
description: 使用求助 | ||
labels: [ 'help wanted' ] | ||
|
||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: 注意事项 | ||
options: | ||
- label: 提ISSUE前,请确认你已经在GitHub Issues和Discussions里搜索过类似的问题,并且没找到想要的答案。 | ||
required: true | ||
|
||
- type: dropdown | ||
attributes: | ||
label: 你使用的是哪种方式? | ||
options: | ||
- GitHub Actions | ||
- Python代码 | ||
- jmcomic命令行 | ||
default: 0 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: 你的目的? | ||
placeholder: 详细描述一下你想要干什么 | ||
|
||
- type: textarea | ||
attributes: | ||
label: 你遇到的困难? | ||
placeholder: 详细描述一下你有啥困难 | ||
|
||
- type: textarea | ||
attributes: | ||
label: 其他信息 | ||
placeholder: 如果有其他需要补充的信息,可以在这里留言 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Bug | ||
title: '[Bug] ' | ||
description: Bug反馈 | ||
labels: [ 'bug' ] | ||
|
||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: 注意事项 | ||
options: | ||
- label: 提ISSUE前,请确认你已经在GitHub Issues和Discussions里搜索过类似的问题,并且没找到想要的答案。 | ||
required: true | ||
- label: GitHub Actions问题请到置顶的Issue反馈。 | ||
required: true | ||
|
||
- type: dropdown | ||
attributes: | ||
label: 发生Bug时,你的使用方式? | ||
multiple: false | ||
options: | ||
- Python代码 | ||
- jmcomic命令行 | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
attributes: | ||
label: 你是否在禁漫官方网页或APP,验证过相应的功能是正常的? | ||
multiple: false | ||
options: | ||
- 测试过,禁漫官方功能正常 | ||
- 我要反馈的bug无需验证/不方便验证 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: option配置+源码/命令 | ||
placeholder: 贴一下你的option配置 + 你使用的python代码或命令,这会帮助开发者解决bug。 | ||
|
||
- type: textarea | ||
attributes: | ||
label: 你预期的结果,与实际结果的差别 | ||
placeholder: | | ||
1. 预期结果... | ||
2. 差别... | ||
- type: textarea | ||
attributes: | ||
label: 其他信息 | ||
placeholder: 如果有其他需要补充的信息,可以在这里留言 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: GitHub Community Support | ||
url: https://github.com/hect0x7/JMComic-Crawler-Python/discussions | ||
about: 提Issues之前,先来Discussions找找有没有你的问题 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Feature Request | ||
title: '[Feature] ' | ||
description: 新功能请求 | ||
labels: [ 'enhancement' ] | ||
|
||
body: | ||
- type: textarea | ||
attributes: | ||
label: 新功能请求 | ||
placeholder: 详细描述一下你的新功能请求 | ||
|
||
|