]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
bug_report: require reporters to specify curl and os versions
authorJay Satiro <raysatiro@yahoo.com>
Wed, 9 Aug 2023 06:48:11 +0000 (02:48 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Thu, 10 Aug 2023 07:28:36 +0000 (03:28 -0400)
- Change curl version and os sections from single-line input to
  multi-line textarea.

- Require curl version and os sections to be filled out before report
  can be submitted.

Closes https://github.com/curl/curl/pull/11636

.github/ISSUE_TEMPLATE/bug_report.yml

index 31723063db6d6be3dad96e03d2d5e2fcabbefff9..32d6868e7689deeaa1a6e848827052e04be12336 100644 (file)
@@ -34,7 +34,7 @@ body:
     validations: 
       required: false
   
-  - type: input
+  - type: textarea
     id: version
     attributes:
       label: curl/libcurl version
@@ -42,9 +42,9 @@ body:
         Please paste the output of `curl -V` here.
       placeholder: 'curl 8.2.0'
     validations:
-      required: false
+      required: true
 
-  - type: input
+  - type: textarea
     id: os
     attributes:
       label: operating system
@@ -52,4 +52,4 @@ body:
         On Unix please post the output of `uname -a` here.
       placeholder: 'Fedora Linux 38'
     validations:
-      required: false
+      required: true