From 5b0464dcdd7708099f5e617a5f9f1a01bd291dd6 Mon Sep 17 00:00:00 2001 From: fujie Date: Wed, 4 Mar 2026 04:58:12 +0800 Subject: [PATCH] feat(bug-report): add plugin dropdown selector - Convert Plugin Name from text input to dropdown menu - Include all current plugins (Actions, Filters, Pipelines, Pipes, Tools) - Add 'Other / Not Listed' option with fallback text field - Reduces typos and improves issue categorization accuracy - Easier plugin-specific issue tracking and statistics --- .github/ISSUE_TEMPLATE/bug_report.yml | 33 +++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index b809179..0f5b7f7 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -25,15 +25,44 @@ body: validations: required: true - - type: input + - type: dropdown id: plugin-name attributes: label: Plugin Name description: Which plugin has the issue? - placeholder: "e.g., Smart Mind Map, Export to Word" + options: + - "Select a plugin..." + - "Action - Deep Dive" + - "Action - Export to Word Enhanced" + - "Action - Export to Excel" + - "Action - Flash Card" + - "Action - Smart Infographic" + - "Action - Smart Mind Map" + - "Filter - Async Context Compression" + - "Filter - Context & Model Enhancement Filter" + - "Filter - Folder Memory" + - "Filter - GitHub Copilot SDK Files Filter" + - "Filter - Markdown Normalizer" + - "Filter - Gemini Multimodel Filter" + - "Pipeline - MOE Prompt Refiner" + - "Pipe - GitHub Copilot SDK" + - "Pipe - iFlow SDK" + - "Tool - OpenWebUI Skills Manager" + - "Tool - Smart Infographic Tool" + - "Tool - Smart Mind Map Tool" + - "Other / Not Listed" validations: required: true + - type: input + id: plugin-name-other + attributes: + label: Plugin Name (if not in list) + description: If you selected 'Other / Not Listed', please specify the plugin name + placeholder: "Plugin name" + validations: + required: false + - type: textarea id: description attributes: