From a6710761fb5c8d93e514d39dcfda4717a278ac66 Mon Sep 17 00:00:00 2001 From: LucasB25 <50886682+LucasB25@users.noreply.github.com> Date: Sun, 22 Sep 2024 12:10:09 +0200 Subject: [PATCH] update --- .github/ISSUE_TEMPLATE/bug_report.yaml | 78 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yaml | 64 +++++++++++++++++ 2 files changed, 142 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 000000000..22c14f9f6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,78 @@ +name: Bug Report +description: Report incorrect or unexpected behavior. +title: "[Bug]: " +labels: ["bug"] +assignees: + - appujet +body: + - type: markdown + attributes: + value: "## 🐞 Bug Report\n\nPlease fill out the information below to help us resolve the issue as quickly as possible." + + - type: textarea + id: description + attributes: + label: "Bug description" + description: "Provide a clear and concise description of the bug." + placeholder: "Describe the issue..." + validations: + required: true + + - type: textarea + id: reproduce-step + attributes: + label: "Steps to reproduce" + description: "Detail the steps to reproduce the bug. Include any specific setup information that might be important." + placeholder: "Step 1: ...\nStep 2: ...\nStep 3: ..." + validations: + required: true + + - type: input + id: os + attributes: + label: "Operating System" + description: "Which operating system and version are you using?" + placeholder: "e.g., Windows 10, macOS 13, Ubuntu 20.04" + validations: + required: true + + - type: input + id: nodejs-version + attributes: + label: "Node.js version" + description: "Specify the version of Node.js that you are using." + placeholder: "e.g., 14.17.0" + validations: + required: false + + - type: input + id: java-version + attributes: + label: "java version" + description: "Specify the version of Java that you are using." + placeholder: "e.g., 17" + validations: + required: false + + - type: input + id: app-version + attributes: + label: "Application/Library version" + description: "Specify the version of the application or library where the bug occurred." + placeholder: "e.g., v1.2.3" + validations: + required: true + + - type: textarea + id: error-logs + attributes: + label: "Error logs or screenshots" + description: "Include relevant error logs or screenshots that might help in diagnosing the issue." + placeholder: "" + + - type: textarea + id: additional-info + attributes: + label: "Additional context" + description: "Provide any other context or information that might be helpful." + placeholder: "Any additional details..." \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 000000000..0076e841f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,64 @@ +name: "Feature Request" +description: "Propose a new idea or improvement for this repository" +title: "[Feature Request]: " +labels: ["enhancement", "feature-request"] +assignees: + - appujet +body: + - type: markdown + attributes: + value: | + ## Feature Request + + Please provide a detailed description of the feature you're suggesting. If applicable, describe any related problem and the potential benefits of implementing this feature. + - type: input + id: title + attributes: + label: "Feature Title" + description: "Provide a brief title for your feature request" + placeholder: "Enter a concise title" + validations: + required: true + - type: textarea + id: problem_description + attributes: + label: "Is your feature request related to a problem?" + description: "Describe the problem you're trying to solve, if applicable" + placeholder: "Describe the problem" + validations: + required: false + - type: textarea + id: suggestion_description + attributes: + label: "Feature Description" + description: "Provide a detailed description of your idea. Include examples, screenshots, or mockups if possible." + placeholder: "Explain your idea in detail" + validations: + required: true + - type: dropdown + id: priority + attributes: + label: "Priority Level" + description: "Indicate how important this feature is" + options: + - "Low" + - "Medium" + - "High" + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: "Alternatives Considered" + description: "Have you considered any alternative solutions? Please describe them here." + placeholder: "Mention any alternative approaches" + validations: + required: false + - type: textarea + id: additional_context + attributes: + label: "Additional Context" + description: "Add any other context or screenshots that could help explain your feature request." + placeholder: "Additional context, links, or references" + validations: + required: false \ No newline at end of file