mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
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>
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
name: Bug Report
|
|
description: Report a bug in codeflash
|
|
labels: ["bug"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to report a bug!
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Describe the bug
|
|
description: A clear description of what the bug is.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: reproduction
|
|
attributes:
|
|
label: Steps to reproduce
|
|
description: Steps to reproduce the behavior.
|
|
placeholder: |
|
|
1. Run `codeflash ...`
|
|
2. See error
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: Expected behavior
|
|
description: What you expected to happen.
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: Codeflash version
|
|
description: Output of `codeflash --version`
|
|
placeholder: "0.x.x"
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: python-version
|
|
attributes:
|
|
label: Python version
|
|
description: Output of `python --version`
|
|
placeholder: "3.x.x"
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: os
|
|
attributes:
|
|
label: Operating system
|
|
options:
|
|
- Linux
|
|
- macOS
|
|
- Windows
|
|
- Other
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: additional
|
|
attributes:
|
|
label: Additional context
|
|
description: Any other context, logs, or screenshots.
|