From c21717c434f74d18b5a86a3ba75465b8757a83bb Mon Sep 17 00:00:00 2001 From: Mehdi Nassim KHODJA <18899702+naskio@users.noreply.github.com> Date: Sun, 17 Sep 2023 23:47:21 +0200 Subject: [PATCH] add issue templates for bug report and feature request. (#9) --- .github/ISSUE_TEMPLATE/bug_report.yml | 60 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 33 ++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..07e1de7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,60 @@ +name: Bug Report +description: Create a bug report to help us improve ParquetSharp.DataFrame +title: "[BUG]: " +labels: [ "Bug" ] + +body: + - type: markdown + attributes: + value: | + **Thank you for reporting this issue!** + To help us understand and address the problem effectively, please provide detailed information. + You can refer to [this guide](https://stackoverflow.com/help/mcve) for tips on creating a good bug report. + + - type: textarea + id: issue-description + attributes: + label: Issue Description + description: A clear and concise description of the issue + validations: + required: true + + - type: textarea + id: environment-information + attributes: + label: Environment Information + description: "Please provide the following details:" + value: | + - ParquetSharp.DataFrame Version: [e.g. 0.1.0] + - ParquetSharp Version: [e.g. 11.0.0] + - .NET Framework/SDK Version: [e.g. .NET Framework 4.7.2] + - Operating System: [e.g. Windows 10] + validations: + required: true + + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps To Reproduce + description: Detailed steps to reproduce the behavior + placeholder: | + 1. Provide a minimal code example or steps. + 2. Explain the exact error message or current behavior. + validations: + required: true + + - type: textarea + id: expected-behavior + attributes: + label: Expected Behavior + description: A clear and concise description of what you expected to happen. + validations: + required: true + + - type: textarea + id: additional-context + attributes: + label: Additional Context (Optional) + description: Add any other context about the problem here, including log outputs or screenshots if applicable. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..e9b6ac3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,33 @@ +name: Feature Request +description: Suggest a new idea for ParquetSharp.DataFrame +title: "[FEATURE REQUEST]: <title>" +labels: [ "Feature Request" ] + +body: + - type: textarea + id: related-problem + attributes: + label: Is your feature request related to a problem? Please describe. + description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + validations: + required: true + + - type: textarea + id: describe-solution + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. + validations: + required: true + + - type: textarea + id: describe-alternatives + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + + - type: textarea + id: additional-context + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here.