GitHub's YAML issue forms require `description:`, not `about:` (which is for the legacy markdown templates). GitHub silently ignores forms with invalid top-level fields, so only the config.yml contact links were showing in the new-issue picker.
29 lines
660 B
YAML
29 lines
660 B
YAML
name: Feature Request
|
|
description: Suggest a new feature or enhancement
|
|
title: "[FEAT] "
|
|
labels: ["enhancement"]
|
|
body:
|
|
- type: textarea
|
|
id: problem
|
|
attributes:
|
|
label: Problem
|
|
description: What's the use case or pain point?
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: proposal
|
|
attributes:
|
|
label: Proposed solution
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: alternatives
|
|
attributes:
|
|
label: Alternatives considered
|
|
- type: checkboxes
|
|
id: scope
|
|
attributes:
|
|
label: Scope check
|
|
options:
|
|
- label: I've checked this isn't already implemented or tracked
|