Skip to content

Commit

Permalink
chore: add issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
iuiaoin committed Jun 11, 2023
1 parent 4075142 commit d912e38
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
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...

0 comments on commit d912e38

Please sign in to comment.