https://github.com/python/cpython/commit/a44782856562025ede013f897d42d0d6e4f085c1 commit: a44782856562025ede013f897d42d0d6e4f085c1 branch: main author: Stan Ulbrych <[email protected]> committer: encukou <[email protected]> date: 2026-02-02T14:56:45Z summary:
gh-144242: Note that issues aren't needed for typos in docs template (GH-144288) files: A .github/ISSUE_TEMPLATE/documentation.yml D .github/ISSUE_TEMPLATE/documentation.md diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md deleted file mode 100644 index 174fd39171d47d..00000000000000 --- a/.github/ISSUE_TEMPLATE/documentation.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -name: Documentation -about: Report a problem with the documentation -labels: "docs" ---- - -# Documentation - -(A clear and concise description of the issue.) diff --git a/.github/ISSUE_TEMPLATE/documentation.yml b/.github/ISSUE_TEMPLATE/documentation.yml new file mode 100644 index 00000000000000..944e590452c7cf --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.yml @@ -0,0 +1,15 @@ +name: Documentation +description: Report a problem with the documentation +labels: ["docs"] +body: + - type: markdown + attributes: + value: | + > [!NOTE] + > Trivial changes (for example typos) don’t require an issue before opening a PR. + - type: textarea + attributes: + label: "Documentation" + description: "A clear and concise description of the issue." + validations: + required: true _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
