codeflash/.github/ISSUE_TEMPLATE/bug_report.yml
Matt Van Horn ad90129965
feat: create issue templates for bug reports and feature requests
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>
2026-03-22 22:56:15 -07:00

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.