From 662e432bc245528474d990709936a5e81257315b Mon Sep 17 00:00:00 2001 From: Filip Lajszczak Date: Sat, 14 Feb 2026 16:03:20 +0000 Subject: [PATCH] Adds documentation issue template. --- .github/ISSUE_TEMPLATE/documentation.yml | 41 ++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/documentation.yml diff --git a/.github/ISSUE_TEMPLATE/documentation.yml b/.github/ISSUE_TEMPLATE/documentation.yml new file mode 100644 index 0000000..6cbaaac --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.yml @@ -0,0 +1,41 @@ +name: 📝 Documentation +description: Report missing, incorrect, or unclear documentation +labels: ["documentation"] + +body: + + - type: dropdown + id: kind + attributes: + label: What kind of documentation issue is this? + options: + - Missing documentation + - Incorrect documentation + - Unclear or confusing documentation + validations: + required: true + + - type: input + id: page + attributes: + label: Affected page + description: Link to the documentation page, or the file path in the repository + placeholder: https://briefcase.beeware.org/en/latest/... + validations: + required: false + + - type: textarea + id: description + attributes: + label: Describe the issue + description: What is missing, incorrect, or unclear? + validations: + required: true + + - type: textarea + id: suggestion + attributes: + label: Suggested improvement + description: If you have a specific suggestion for how the documentation should read, describe it here. + validations: + required: false