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.
23 lines
561 B
YAML
23 lines
561 B
YAML
name: Documentation Issue
|
|
description: Typos, unclear sections, missing docs, broken links
|
|
title: "[DOCS] "
|
|
labels: ["documentation"]
|
|
body:
|
|
- type: input
|
|
id: file
|
|
attributes:
|
|
label: File or page
|
|
description: README.md, themes/README.md, HYPRLAND.md, KEYBINDS.md, in-app help, etc.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: problem
|
|
attributes:
|
|
label: What's wrong or missing?
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: suggestion
|
|
attributes:
|
|
label: Suggested fix or addition
|