From 9d921dc47f2b5a9c67f21ff5500bd3e1290694bf Mon Sep 17 00:00:00 2001 From: lexluo09 <39718951+lexluo09@users.noreply.github.com> Date: Thu, 27 Jun 2024 19:55:52 +0800 Subject: [PATCH] (improvement)(github) Optimize the question template. (#1255) --- .../{bug_report.yml => bug_request.yml} | 0 ...nhancement.yml => enhancement_request.yml} | 0 ...eature-request.yml => feature_request.yml} | 0 .github/ISSUE_TEMPLATE/question.yml | 4 -- .github/ISSUE_TEMPLATE/question_request.yml | 58 +++++++++++++++++++ 5 files changed, 58 insertions(+), 4 deletions(-) rename .github/ISSUE_TEMPLATE/{bug_report.yml => bug_request.yml} (100%) rename .github/ISSUE_TEMPLATE/{enhancement.yml => enhancement_request.yml} (100%) rename .github/ISSUE_TEMPLATE/{feature-request.yml => feature_request.yml} (100%) delete mode 100644 .github/ISSUE_TEMPLATE/question.yml create mode 100644 .github/ISSUE_TEMPLATE/question_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_request.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/bug_report.yml rename to .github/ISSUE_TEMPLATE/bug_request.yml diff --git a/.github/ISSUE_TEMPLATE/enhancement.yml b/.github/ISSUE_TEMPLATE/enhancement_request.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/enhancement.yml rename to .github/ISSUE_TEMPLATE/enhancement_request.yml diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/feature-request.yml rename to .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml deleted file mode 100644 index e12048e60..000000000 --- a/.github/ISSUE_TEMPLATE/question.yml +++ /dev/null @@ -1,4 +0,0 @@ -name: SuperSonic question request -title: "[question] " -description: Ask a question of SuperSonic -labels: question \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/question_request.yml b/.github/ISSUE_TEMPLATE/question_request.yml new file mode 100644 index 000000000..cb61cb28d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question_request.yml @@ -0,0 +1,58 @@ +name: SuperSonic question request +description: Ask a question of SuperSonic +title: "[question] " +labels: question +body: + - type: markdown + attributes: + value: | + ## Ask a Question about SuperSonic + Please provide a detailed description of your question or the clarification you seek regarding the SuperSonic project. + - type: textarea + id: describe-question + attributes: + label: Describe your question + description: Please provide a clear and concise description of your question. + placeholder: "Type your question here..." + validations: + required: true + - type: textarea + id: additional-context + attributes: + label: Provide any additional context or information + description: If your question is related to a specific part of the SuperSonic project or if you have already looked through certain documentation, please provide that information here. + placeholder: "Add context here..." + validations: + required: false + - type: textarea + id: tried-to-resolve + attributes: + label: What have you tried to resolve your question + description: Let us know what you have done to try and understand or resolve your question. This can help us provide you with the most useful guidance. + placeholder: "I've already tried..." + validations: + required: false + - type: textarea + id: environment + attributes: + label: Your environment + description: Share details about your environment to help us reproduce the issue. Include your operating system, version of SuperSonic, and any other relevant details. + placeholder: "OS, SuperSonic version, etc..." + validations: + required: false + - type: textarea + id: screenshots-logs + attributes: + label: Screenshots or Logs + description: If applicable, add screenshots or logs to help explain your problem. + placeholder: "Paste your logs or attach screenshots here..." + validations: + required: false + - type: textarea + id: additional-information + attributes: + label: Additional information + description: Add any other context or details you think might be helpful for understanding your question. + placeholder: "Any other information..." + validations: + required: false \ No newline at end of file