* feat: Add issue reporting guidelines to README.md
- Add dedicated "🐛 Issue Reporting" section with clear instructions
- Direct users to main repository issue tracker
- Include template for issue reporting with required information
- Improve project transparency and user support workflow
* fix: Update repository references and add issue reporting guidelines
- Fix incorrect repository reference (satwareAG-ironMike → satwareAG)
- Add comprehensive issue reporting section
- Clarify workflow between forks and main repository
- Improve contribution process documentation
* feat: Add GitHub issue templates for better issue management
- Add bug report template with structured fields
- Provide clear guidance for issue reporting
- Improve issue quality and processing efficiency
* feat: Add feature request template
- Add structured feature request template
- Include sections for use case, implementation details, and alternatives
- Improve feature planning and discussion process
* feat: Add content issue template
- Add template for content-related issues (typos, outdated info, etc.)
- Provide specific fields for content corrections
- Improve content quality maintenance process
* feat: Add issue template configuration
- Configure issue template chooser with clear options
- Add contact links for support and security
- Improve issue routing and user guidance
* feat: Add pull request template
- Add comprehensive PR template with structured sections
- Include checklist for quality assurance
- Improve code review and integration process
92 lines
2.8 KiB
YAML
92 lines
2.8 KiB
YAML
name: ✨ Feature Request
|
|
description: Suggest a new feature or improvement for satware.ai
|
|
title: "[Feature]: "
|
|
labels: ["enhancement", "needs-triage"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thank you for suggesting a new feature! Your ideas help shape the future of satware.ai.
|
|
|
|
Before submitting, please search existing issues to avoid duplicates.
|
|
|
|
- type: textarea
|
|
id: feature-description
|
|
attributes:
|
|
label: Feature Description
|
|
description: A clear and concise description of the feature you'd like to see.
|
|
placeholder: Describe the feature you're requesting...
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: problem-statement
|
|
attributes:
|
|
label: Problem or Use Case
|
|
description: What problem does this feature solve? What use case does it address?
|
|
placeholder: |
|
|
As a [type of user], I want [what] so that [why].
|
|
|
|
Currently, I have to [current workaround] which is [problem with current approach].
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: proposed-solution
|
|
attributes:
|
|
label: Proposed Solution
|
|
description: How would you like this feature to work?
|
|
placeholder: Describe your ideal solution...
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: alternatives
|
|
attributes:
|
|
label: Alternatives Considered
|
|
description: Have you considered any alternative solutions or features?
|
|
placeholder: Describe any alternative solutions you've considered...
|
|
|
|
- type: dropdown
|
|
id: feature-type
|
|
attributes:
|
|
label: Feature Type
|
|
description: What type of feature is this?
|
|
options:
|
|
- Content Addition
|
|
- User Interface Improvement
|
|
- Navigation Enhancement
|
|
- Performance Optimization
|
|
- Accessibility Improvement
|
|
- Mobile Experience
|
|
- Search Functionality
|
|
- Integration
|
|
- Documentation
|
|
- Other
|
|
|
|
- type: dropdown
|
|
id: priority
|
|
attributes:
|
|
label: Priority
|
|
description: How important is this feature to you?
|
|
options:
|
|
- Low - Nice to have
|
|
- Medium - Would improve my experience
|
|
- High - Significant impact on usability
|
|
- Critical - Blocking my use of the site
|
|
|
|
- type: textarea
|
|
id: additional-context
|
|
attributes:
|
|
label: Additional Context
|
|
description: Add any other context, screenshots, mockups, or examples about the feature request here.
|
|
placeholder: Any additional information, examples, or mockups that might help us understand your request...
|
|
|
|
- type: checkboxes
|
|
id: terms
|
|
attributes:
|
|
label: Code of Conduct
|
|
description: By submitting this issue, you agree to follow our Code of Conduct
|
|
options:
|
|
- label: I agree to follow this project's Code of Conduct
|
|
required: true |