From d7f91d922efd5bf21c19bbcbcc4417a429b9e54e Mon Sep 17 00:00:00 2001 From: Omar Farooq Date: Thu, 10 Sep 2026 17:19:12 +0500 Subject: [PATCH] chore: add feature request template --- .github/ISSUE_TEMPLATE/feature_request.yml | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..2ea2413 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,53 @@ +name: Feature request +description: Suggest an improvement or new capability for OhMyDB +title: "[Feature] " +labels: + - enhancement +body: + - type: markdown + attributes: + value: | + Thanks for helping improve OhMyDB. + + - type: textarea + id: problem + attributes: + label: Problem or use case + description: What problem are you trying to solve? + validations: + required: true + + - type: textarea + id: proposal + attributes: + label: Proposed improvement + description: Describe the feature or behavior you would like to see. + validations: + required: true + + - type: dropdown + id: area + attributes: + label: Area + options: + - PostgreSQL + - MySQL/MariaDB + - Policy engine + - CLI + - Docker / deployment + - Documentation + - Other + validations: + required: true + + - type: textarea + id: alternatives + attributes: + label: Alternatives considered + description: Optional. Mention any workaround or alternative approach you already tried. + + - type: textarea + id: context + attributes: + label: Additional context + description: Add examples, logs, screenshots, or implementation ideas if useful. \ No newline at end of file