* 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
107 lines
2.8 KiB
YAML
107 lines
2.8 KiB
YAML
name: 🐛 Bug Report
|
|
description: Report a bug or unexpected behavior on satware.ai
|
|
title: "[Bug]: "
|
|
labels: ["bug", "needs-triage"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thank you for taking the time to report a bug! This helps us improve satware.ai for everyone.
|
|
|
|
Before submitting, please search existing issues to avoid duplicates.
|
|
|
|
- type: input
|
|
id: url
|
|
attributes:
|
|
label: Page URL
|
|
description: Where did you encounter this bug?
|
|
placeholder: https://satware.ai/path/to/page
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: bug-description
|
|
attributes:
|
|
label: Bug Description
|
|
description: A clear and concise description of what the bug is.
|
|
placeholder: Describe what went wrong...
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: steps-to-reproduce
|
|
attributes:
|
|
label: Steps to Reproduce
|
|
description: Steps to reproduce the behavior
|
|
placeholder: |
|
|
1. Go to '...'
|
|
2. Click on '...'
|
|
3. Scroll down to '...'
|
|
4. See error
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: expected-behavior
|
|
attributes:
|
|
label: Expected Behavior
|
|
description: What did you expect to happen?
|
|
placeholder: Describe what should have happened...
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: browser
|
|
attributes:
|
|
label: Browser
|
|
description: Which browser were you using?
|
|
options:
|
|
- Chrome
|
|
- Firefox
|
|
- Safari
|
|
- Edge
|
|
- Opera
|
|
- Other
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: browser-version
|
|
attributes:
|
|
label: Browser Version
|
|
description: What version of the browser were you using?
|
|
placeholder: e.g., Chrome 120, Safari 17.2
|
|
|
|
- type: dropdown
|
|
id: device-type
|
|
attributes:
|
|
label: Device Type
|
|
description: What type of device were you using?
|
|
options:
|
|
- Desktop
|
|
- Tablet
|
|
- Mobile
|
|
- Other
|
|
|
|
- type: input
|
|
id: device-info
|
|
attributes:
|
|
label: Device Information
|
|
description: Operating system and version
|
|
placeholder: e.g., Windows 11, macOS 14.2, iOS 17, Android 14
|
|
|
|
- type: textarea
|
|
id: additional-context
|
|
attributes:
|
|
label: Additional Context
|
|
description: Add any other context about the problem here, including screenshots if applicable.
|
|
placeholder: Any additional information that might help us understand the issue...
|
|
|
|
- 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 |