Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
---
name: 🐛 Bug Report
about: Report a bug to help us improve
title: '[BUG] '
labels: bug, needs-triage
assignees: ''
---

## Bug Description

<!-- A clear and concise description of what the bug is -->

## Steps to Reproduce

<!-- Provide detailed steps to reproduce the behavior -->

1. Go to '...'
2. Click on '...'
3. Scroll down to '...'
4. See error

## Expected Behavior

<!-- What you expected to happen -->

## Actual Behavior

<!-- What actually happened -->

## Screenshots / Logs

<!-- If applicable, add screenshots or error logs -->

```
<!-- Paste error logs here -->
```

## Environment

<!-- Complete the following information -->

- **OS**: [e.g., macOS 14.0, iOS 17.0, watchOS 9.0]
- **Version**: [e.g., 1.2.3]

## Additional Context

<!-- Add any other context about the problem here -->

## Possible Solution

<!-- Optional: suggest a fix or reason for the bug -->

## Related Issues

<!-- Link to related issues if any -->

---

**Priority**: <!-- Low / Medium / High / Critical -->
**Impact**: <!-- How many users are affected? -->
47 changes: 47 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
## Description

<!-- Provide a clear and concise description of your changes -->

## Type of Change

<!-- Mark the relevant option with an "x" -->

- [ ] 🐛 Bug fix (non-breaking change which fixes an issue)
- [ ] ✨ New feature (non-breaking change which adds functionality)
- [ ] 📝 Documentation update
- [ ] 🎨 Code style update (formatting, renaming)
- [ ] ♻️ Code refactoring (no functional changes)
- [ ] ⚡ Performance improvement
- [ ] 🔧 Build configuration change
- [ ] 🔒 Security update

## Related Issues

<!-- Link related issues here. Use "Fixes #123" to auto-close issues -->

Fixes #
Related to #

## Changes Made

<!-- List the key changes in this PR -->

-
-
-

## Breaking Changes

<!-- If this PR introduces breaking changes, describe them here -->

## Migration Guide

<!-- If breaking changes exist, provide a migration guide -->

## Additional Notes

<!-- Add any additional information that reviewers should know -->

---

**Reviewers**: @<!-- mention relevant reviewers -->
Loading