Add GitHub issue templates using YAML form syntax: - bug_report.yml: structured bug report with version, OS, reproduction steps - feature_request.yml: feature request with motivation and alternatives - config.yml: enable blank issues and link to discussions Closes #523 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
883 B
YAML
32 lines
883 B
YAML
name: Feature Request
|
|
description: Suggest a new feature or improvement
|
|
labels: ["enhancement"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for suggesting a feature!
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Describe the feature
|
|
description: A clear description of what you'd like to see.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: motivation
|
|
attributes:
|
|
label: Motivation
|
|
description: Why is this feature useful? What problem does it solve?
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: alternatives
|
|
attributes:
|
|
label: Alternatives considered
|
|
description: Any alternative solutions or workarounds you've tried.
|
|
- type: textarea
|
|
id: additional
|
|
attributes:
|
|
label: Additional context
|
|
description: Any other context or screenshots.
|