]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
ISSUE_TEMPLATE/docs: add a separate GitHub issue template for documentation
authorDaniel Stenberg <daniel@haxx.se>
Thu, 11 Jul 2024 21:23:54 +0000 (23:23 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 11 Jul 2024 21:56:20 +0000 (23:56 +0200)
As such problems don't really fit the code related template

Closes #14161

.github/ISSUE_TEMPLATE/bug_report.yml
.github/ISSUE_TEMPLATE/docs.yml [new file with mode: 0644]

index e74ac081752d36b7827763cf702182db53baa5e4..a857700fe55800ca415320f6db7f010f3734fc7c 100644 (file)
@@ -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 (file)
index 0000000..354cfe5
--- /dev/null
@@ -0,0 +1,32 @@
+# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, 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