From 223c330ed5be7b711cae899383ee26dff444ff8d Mon Sep 17 00:00:00 2001 From: Siddharth Mishra Date: Mon, 11 Oct 2021 08:02:30 +0530 Subject: [PATCH] feat: Add github issue form - bug report (#9521) Signed-off-by: Siddharth --- .github/ISSUE_TEMPLATE/bug_report.md | 35 ------------- .github/ISSUE_TEMPLATE/bug_report.yaml | 69 ++++++++++++++++++++++++++ 2 files changed, 69 insertions(+), 35 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index d2f84c92ef..0000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: "\U0001F41B Bug report" -about: Create a bug report to help us improve Milvus -title: '' -labels: kind/bug, needs-triage -assignees: yanliang567 - ---- - - - -#### Steps/Code to reproduce: - - -#### Expected result: - - -#### Actual results: - - - -#### Environment: -- Milvus version(e.g. v2.0.0-RC2 or 8b23a93): -- Deployment mode(standalone or cluster): -- SDK version(e.g. pymilvus v2.0.0rc2): -- OS(Ubuntu or CentOS): -- CPU/Memory: -- GPU: -- Others: - -#### Configuration file: - - -#### Additional context: - diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000000..435667cbb5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,69 @@ +name: 🐞 Bug report +description: Create a bug report to help us improve Milvus +title: "[Bug]: " +labels: [kind/bug, needs-triage] +assignees: +- yanliang567 +body: +- type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! Please fill the form in English! +- type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true +- type: textarea + attributes: + label: Current Behavior + description: A concise description of what you're experiencing. + placeholder: | + When I do , happens and I see the error message attached below: + ```...``` + validations: + required: true +- type: textarea + attributes: + label: Expected Behavior + description: A concise description of what you expected to happen. + placeholder: When I do , should happen instead. + validations: + required: false +- type: textarea + attributes: + label: Steps To Reproduce + description: Steps to reproduce the behavior. + placeholder: | + 1. In this environment... + 2. With this config... + 3. Run '...' + 4. See error... + render: markdown + validations: + required: false +- type: textarea + attributes: + label: Environment + description: | + Enter the Environment Details: + value: | + - Milvus version: + - Deployment mode(standalone or cluster): + - SDK version(e.g. pymilvus v2.0.0rc2): + - OS(Ubuntu or CentOS): + - CPU/Memory: + - GPU: + - Others: + render: markdown + validations: + required: false +- type: textarea + attributes: + label: Anything else? + description: | + Links? References? Anything that will give us more context about the issue you are encountering! + validations: + required: false