mirror of
https://github.com/openai/codex.git
synced 2026-05-18 18:22:39 +00:00
Issue forms should only reference labels that exist in the repository so new reports receive the intended automatic labels. This updates the CLI issue form to stop applying the missing `needs triage` label, and changes the documentation issue form from `docs` to the existing `documentation` label. Fixes #21158
28 lines
810 B
YAML
28 lines
810 B
YAML
name: 📗 Documentation Issue
|
|
description: Tell us if there is missing or incorrect documentation
|
|
labels: [documentation]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thank you for submitting a documentation request. It helps make Codex better.
|
|
- type: dropdown
|
|
attributes:
|
|
label: What is the type of issue?
|
|
multiple: true
|
|
options:
|
|
- Documentation is missing
|
|
- Documentation is incorrect
|
|
- Documentation is confusing
|
|
- Example code is not working
|
|
- Something else
|
|
- type: textarea
|
|
attributes:
|
|
label: What is the issue?
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: Where did you find it?
|
|
description: If possible, please provide the URL(s) where you found this issue.
|