chore: add issue templates

This commit is contained in:
Acbox
2026-03-24 19:27:43 +08:00
parent e9c9ed5ab1
commit 4ea1422409
3 changed files with 151 additions and 2 deletions
+88
View File
@@ -0,0 +1,88 @@
name: Bug Report
description: Report a bug or unexpected behavior
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to report a bug! Please fill out the information below to help us investigate the issue.
- type: textarea
id: description
attributes:
label: Bug Description
description: A clear and concise description of what the bug is and what you expected to happen.
placeholder: Describe the bug...
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. Go to '...'
2. Click on '...'
3. See error
validations:
required: true
- type: textarea
id: error
attributes:
label: Error Messages / Logs
description: If applicable, paste any error messages or relevant log output here.
render: shell
validations:
required: false
- type: input
id: version
attributes:
label: Version
description: What version of Memoh are you running?
placeholder: e.g. v0.5.0
validations:
required: true
- type: input
id: model
attributes:
label: Model Used
description: Which LLM model were you using when the bug occurred?
placeholder: e.g. gpt-4o, claude-sonnet-4-20250514, gemini-2.0-flash
validations:
required: false
- type: dropdown
id: channel
attributes:
label: Channel
description: Which channel were you using?
options:
- Telegram
- Discord
- Lark (Feishu)
- Email
- QQ
- Local
- Other
validations:
required: false
- type: textarea
id: additional
attributes:
label: Additional Context
description: Add any other context, screenshots, or information about the problem here.
validations:
required: false
- type: checkboxes
id: pr
attributes:
label: Contributing
options:
- label: I would like to submit a pull request to fix this bug
@@ -0,0 +1,58 @@
name: Feature Request
description: Suggest a new feature or enhancement
title: "[Feature]: "
labels: ["feat"]
body:
- type: markdown
attributes:
value: |
Thanks for suggesting a feature! Please describe your idea so we can evaluate and discuss it.
- type: textarea
id: description
attributes:
label: Feature Description
description: A clear and concise description of the feature you'd like to see.
placeholder: Describe the feature...
validations:
required: true
- type: textarea
id: motivation
attributes:
label: Motivation
description: Why do you want this feature? What problem does it solve?
placeholder: Explain the use case or problem...
validations:
required: true
- type: textarea
id: proposed-solution
attributes:
label: Proposed Solution
description: If you have an idea of how this could be implemented, describe it here.
validations:
required: false
- type: textarea
id: alternatives
attributes:
label: Alternatives Considered
description: Have you considered any alternative solutions or workarounds?
validations:
required: false
- type: textarea
id: additional
attributes:
label: Additional Context
description: Add any other context, mockups, or references about the feature request here.
validations:
required: false
- type: checkboxes
id: pr
attributes:
label: Contributing
options:
- label: I would like to submit a pull request to implement this feature