forked from iuiaoin/wechat-gptbot
-
Notifications
You must be signed in to change notification settings - Fork 0
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
3 changed files
with
79 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,54 @@ | ||
name: Bug Report 🐞 | ||
description: File a bug report about the project | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
#### Confirm in advance: | ||
1. Have `git pull` the latest code | ||
2. Python installed, version between 3.8.X~3.10.X | ||
3. Dependencies installed via `pip install -r requirements.txt` | ||
4. No missing configuration in `config.json` | ||
5. No network issue(able to connect to openai server) | ||
- type: checkboxes | ||
attributes: | ||
label: Search for answers in existing issues | ||
description: Please check existing issues [here](https://github.com/iuiaoin/wechat-gptbot/issues) | ||
options: | ||
- label: I have searched issues, there is no issue related to the problem I encountered | ||
required: true | ||
- type: dropdown | ||
id: python-version | ||
attributes: | ||
label: Python version | ||
description: What version of python are you running? | ||
options: | ||
- python 3.8 | ||
- python 3.9 | ||
- python 3.10 | ||
- other | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Issue description | ||
description: Describe the problem in detail, or provide relevant screenshots | ||
placeholder: A bug happened! | ||
- type: textarea | ||
id: repro-steps | ||
attributes: | ||
label: Repro steps | ||
description: Summarize the steps that can repro your issue | ||
placeholder: | | ||
1. <step 1> | ||
2. <step 2> | ||
3. <step 3> | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell |
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 @@ | ||
blank_issues_enabled: false |
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,24 @@ | ||
name: Feature request 🎉 | ||
description: Propose your new idea or suggestion for the project | ||
title: "[Feat]: " | ||
labels: ["feature"] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Search for answers in existing issues | ||
description: Please check existing issues [here](https://github.com/iuiaoin/wechat-gptbot/issues) | ||
options: | ||
- label: I have searched issues, there is no similar issue related | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Feature description | ||
description: Describe the feature in detail, or provide relevant samples | ||
placeholder: I have a proposal that enable wechat-gptbot to... | ||
- type: textarea | ||
id: motivation | ||
attributes: | ||
label: Motivation | ||
description: Summarize your motivation and it may help us discover and come up with better solutions | ||
placeholder: Without this feature, I cannot... |