system-prompts-and-models-o.../.github/ISSUE_TEMPLATE/config.yml
ming 9e86c6c4e1 Add minimal GitHub Issue Forms (bug, request, docs/inquiry)
Structured issue templates that turn the README's 'Open an issue' entry
into guided forms with required fields for vendor, location, and details.

Files:
- .github/ISSUE_TEMPLATE/bug_report.yml (Bug Report)
- .github/ISSUE_TEMPLATE/request.yml  (Feature Request)
- .github/ISSUE_TEMPLATE/config.yml  (Docs / Typo / Inquiry)

Validation: PyYAML loads each file; body is a non-empty list of valid
form element types (input, textarea, dropdown); top-level keys
(name, description, body) are present in each template.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-08-04 02:13:09 +08:00

27 lines
678 B
YAML

name: Docs / Typo / Inquiry
description: Fix a typo, clarify README, or ask a question about the repository.
title: ""
labels:
- question
body:
- type: dropdown
id: category
attributes:
label: Category
description: What kind of issue is this?
options:
- Documentation / README
- Typo
- Folder layout / organization
- General question
validations:
required: true
- type: textarea
id: details
attributes:
label: Details
description: Provide the location (file path or section) and what should change or what you're asking.
placeholder: "..."
validations:
required: true