From 86b45f6e7eb9291b4cef1dbdda4b5b913fc501e0 Mon Sep 17 00:00:00 2001 From: Jay Satiro <raysatiro@yahoo.com> Date: Wed, 9 Aug 2023 02:48:11 -0400 Subject: [PATCH] bug_report: require reporters to specify curl and os versions - 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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 31723063db..32d6868e76 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -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