From 682c357f7f764ffb52889107b64f21253f3d1530 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 11 Jul 2024 23:23:54 +0200 Subject: [PATCH] ISSUE_TEMPLATE/docs: add a separate GitHub issue template for documentation As such problems don't really fit the code related template Closes #14161 --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- .github/ISSUE_TEMPLATE/docs.yml | 32 +++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/docs.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index e74ac08175..a857700fe5 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -2,8 +2,8 @@ # # SPDX-License-Identifier: curl -name: Bug Report -description: Create a report to help us improve +name: Bug Report on code +description: Tell us about your problem with curl or libcurl body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/docs.yml b/.github/ISSUE_TEMPLATE/docs.yml new file mode 100644 index 0000000000..354cfe5cf9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/docs.yml @@ -0,0 +1,32 @@ +# Copyright (C) Daniel Stenberg, , et al. +# +# SPDX-License-Identifier: curl + +name: Bug Report on documentation +description: Problems, errors, mistakes or typos in documentation. +labels: documentation + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + + Only file documentation bugs here! Ask questions on the mailing lists https://curl.se/mail/ + + - type: textarea + id: reproducer + attributes: + label: Specify which documentation you found a problem with + description: | + Include function name, URL, tarball version and all other relevant + details that identify the documentation source. + validations: + required: true + + - type: textarea + id: expected-behaviour + attributes: + label: The problem + validations: + required: true -- 2.47.3