GitHub Issue Templates and Pull Request Template#
Bug Report Issue Template#
The bug report template is a Markdown file with YAML front matter for metadata. It prompts users to provide a clear and concise description of the bug, steps to reproduce, expected behavior, screenshots, environment details (for both desktop and smartphone), and any additional context. The structure is as follows:
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.
This template does not include collapsible sections, component selectors, or priority selectors. All sections are visible by default and require manual completion by the user. For more details, see the bug report template.
Feature Request Issue Template#
The feature request template also uses YAML front matter and Markdown. It asks users to describe the problem their feature would solve, the desired solution, alternatives considered, and any additional context. The structure is:
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.
Like the bug report template, this template does not provide collapsible sections, component selectors, or priority selectors. All prompts are static and must be filled in manually. See the feature request template for reference.
Pull Request Template#
There is currently no pull request template in the repository. As a result, there are no standardized sections for change types, architecture impact, security considerations, or pre-merge checks. Contributors should provide relevant information in the pull request description manually.
Notes on Advanced Features#
The repository does not use advanced GitHub issue form features such as collapsible sections, component selectors, or priority selectors. If you require these features, consider migrating to YAML-based issue forms and updating the repository configuration accordingly. However, as of now, only basic Markdown templates are implemented.