From 0fa90503e09d46cdea065f5cef46cd2562632ecd Mon Sep 17 00:00:00 2001 From: Mohit Kumhar Date: Sun, 7 Sep 2025 15:46:21 +0530 Subject: [PATCH] chore: update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 46 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature_request.md | 18 +++++++++ 3 files changed, 65 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..8f59e9c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,46 @@ +--- +name: "🐞 Bug report" +about: "Report a bug so we can reproduce, triage and fix it quickly." +title: "[BUG] " +labels: ["bug"] +--- + +## 🔗 Personal GitHub Account + +Please provide your GitHub account URL: + +- GitHub profile: [https://github.com/username](https://github.com/username) + +# Bug report + +**Short description (one line)** +> _Replace this with a one-line summary of the bug (what's broken)._ + +--- + +## ✅ Before filing +- [ ] I searched existing issues and PRs; this is not a duplicate. +- [ ] I can reproduce this with latest `main` (or I noted the exact commit/tag below). +- [ ] I removed or redacted any sensitive data (API keys, PII). + +--- + +## Environment +Please fill out as much as you can. + +- **App / project version:** `vX.Y.Z` or commit `abcdef` +- **OS:** e.g. `Windows 11 (64-bit)`, `macOS 13.5`, `Ubuntu 24.04` +- **Platform:** `desktop` / `server` / `mobile` +- **Browser & version:** e.g. `Chrome 121.0.0` (if web) +- **Runtime / stack:** e.g. `Node 20.3`, `Python 3.11`, `Java 17` +- **Database / services:** e.g. `Postgres 15`, `Redis 7` +- **How installed:** `npm`, `pip`, `docker-compose`, `binary`, etc. +- **Relevant config / environment variables:** (only non-sensitive parts) + +--- + +## Reproduction steps (step-by-step) +1. Go to `...` +2. Click on `...` +3. Enter `...` +4. See error diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..a49eab2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..d40a72e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,18 @@ +--- +name: "✨ Feature Request" +about: Suggest a new feature or improvement +title: "[FEATURE] " +labels: enhancement +--- + +### Feature description +A clear and concise description of the feature you want. + +### Why is this needed? +Explain why this feature would be useful. + +### Possible solution +If you have an idea of how to implement it, describe here. + +### Additional context +Add any other context or screenshots.