diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 3e88057..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: Bug Report -about: Help us improve by reporting an issue -title: "[Bug]: " -labels: bug -assignees: '' ---- - -## Description -Provide a clear and concise description of the bug. - -## Steps to Reproduce -List the steps to reproduce the issue, for example: -1. Go to '...' -2. Click on '...' -3. Scroll down to '...' -4. Observe the error - -## Expected Behavior -Describe what you expected to happen instead. - -## Actual Behavior -Describe what actually happened. - -## Screenshots / Logs -If applicable, add screenshots or paste relevant log output to help explain the problem. - -## Environment -Please complete the following information (if relevant): -- OS: [e.g. Windows 11, macOS 14, Ubuntu 22.04] -- Browser [e.g. Chrome 124, Safari 17] -- App/Service version [e.g. v1.2.3] - -## Additional Context -Add any other details that might help us understand or reproduce the issue. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..3a858a6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,51 @@ +name: Feature Request +description: Suggest an improvement or new idea for Fredy +title: "[Feature]: " +labels: [enhancement] +assignees: [] + +body: + - type: textarea + id: problem + attributes: + label: Related Problem + description: Is your feature request related to a problem? Describe it clearly. + placeholder: "Example: It’s difficult to do X when Y happens..." + validations: + required: false + + - type: textarea + id: solution + attributes: + label: Proposed Solution + description: Describe the feature you would like to see. + placeholder: "I would like Fredy to automatically..." + validations: + required: true + + - type: textarea + id: alternatives + attributes: + label: Alternatives Considered + description: List any alternative solutions or workarounds you’ve tried or thought about. + placeholder: "Instead of this, I also considered..." + validations: + required: false + + - type: textarea + id: benefits + attributes: + label: Benefits + description: Explain how this feature would improve Fredy or it's user experience. + placeholder: "This would save users time by..." + validations: + required: true + + - type: textarea + id: context + attributes: + label: Additional Context + description: Add any other context, examples, or screenshots that might help clarify your idea. + placeholder: "Any other relevant information..." + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/feature_request.md rename to .github/ISSUE_TEMPLATE/feature_request.yml