From c0daea7b3193194162d3715451fc7191966603aa Mon Sep 17 00:00:00 2001 From: metagn Date: Sat, 26 Nov 2022 19:32:13 +0300 Subject: [PATCH] issue form: don't syntax highlight output logs (#20924) * issue form: don't syntax highlight output logs * example output logs make no sense * dummy to skip ci [skip ci] --- .github/ISSUE_TEMPLATE/bug_report.yml | 20 ++++++++++---------- .github/ISSUE_TEMPLATE/feature_request.yml | 5 ++--- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 30b3d33510..8406f607f2 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -11,13 +11,13 @@ body: Reports with a reproducible example and descriptive detailed information will likely receive fixes faster. - type: textarea - id: what-happened + id: description attributes: - label: What happened? + label: Description description: | Use DETAILED DESCRIPTIVE information about the problem. Here, you go into more details about your Bug report. This section can be a few paragraphs long. - placeholder: Bug reports with full repro code and detailed information will be fixed faster. + placeholder: Bug reports with reproducible code and detailed information will be fixed faster. validations: required: true @@ -25,25 +25,25 @@ body: id: nim-version attributes: label: Nim Version - description: Please run `nim -v` on the command line. + description: Copy and paste the output of `nim -v` on the command line. For development versions, make sure to include the commit hash. validations: required: true - type: textarea id: current-logs attributes: - label: Current Standard Output Logs + label: Current Output description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. - placeholder: Bug reports with full repro code and detailed information will be fixed faster. - render: shell + placeholder: Bug reports with reproducible code and detailed information will be fixed faster. + render: text - type: textarea id: expected-logs attributes: - label: Expected Standard Output Logs + label: Expected Output description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. - placeholder: Bug reports with full repro code and detailed information will be fixed faster. - render: shell + placeholder: Bug reports with reproducible code and detailed information will be fixed faster. + render: text - type: textarea id: possible-solution diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 55b4836fd3..5cb4586260 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -43,10 +43,9 @@ body: - type: textarea id: Examples attributes: - label: Standard Output Examples - description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + label: Examples + description: Provide examples for your feature request here. placeholder: Example code here. - render: shell - type: textarea id: incompatibility