Files
JamesandClaude Opus 4.6 ac81358017 chore(github): convert issue templates to YAML forms and disable blank issues
Replace markdown issue templates with GitHub YAML form templates for
structured bug reports and feature requests. Add config.yml to disable
blank issues and enforce template usage.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 05:45:41 +00:00

90 lines
2.1 KiB
YAML

name: Bug Report
description: Report a bug to help us improve
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to report a bug! Before filing, please:
- Search [existing issues](https://github.com/heygen-com/hyperframes/issues) to avoid duplicates
- Make sure the issue reproduces without custom extensions or plugins
- 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: Minimal steps to reproduce the behavior.
placeholder: |
1. Create a composition with...
2. Run `npx hyperframes render`
3. See error...
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behavior
description: What you expected to happen.
validations:
required: true
- type: textarea
id: actual
attributes:
label: Actual behavior
description: What actually happened. Include error messages or screenshots if applicable.
validations:
required: true
- type: dropdown
id: os
attributes:
label: Operating System
options:
- macOS
- Linux (Ubuntu/Debian)
- Linux (Other)
- Windows
- Other
validations:
required: true
- type: input
id: node-version
attributes:
label: Node.js version
placeholder: "e.g., 22.12.0"
validations:
required: true
- type: input
id: ffmpeg-version
attributes:
label: FFmpeg version
placeholder: "e.g., 7.1"
validations:
required: true
- type: input
id: hyperframes-version
attributes:
label: Hyperframes version
placeholder: "e.g., 0.1.0"
validations:
required: true
- type: textarea
id: additional
attributes:
label: Additional context
description: Any other context, logs, or screenshots.