From 7e243d818eacbcb09db241b5efa2d1c860fa67e8 Mon Sep 17 00:00:00 2001 From: Jiayuan Zhang Date: Wed, 15 Apr 2026 17:41:40 +0800 Subject: [PATCH] feat(github): add deployment type dropdown to issue templates Add a required dropdown field asking whether the user is on multica.ai (hosted) or self-hosted, to both bug report and feature request templates. --- .github/ISSUE_TEMPLATE/bug_report.yml | 11 +++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 7c8ac2729..bdd5575e9 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -3,6 +3,17 @@ description: Report a bug — something that's broken, crashes, or behaves incor title: "[Bug]: " labels: ["bug"] body: + - type: dropdown + id: deployment + attributes: + label: Deployment type + description: Are you using the hosted version or a self-hosted instance? + options: + - multica.ai (hosted) + - Self-hosted + validations: + required: true + - type: textarea id: description attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 8d95bea4d..81d5e0dfb 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -3,6 +3,17 @@ description: Suggest a new feature or improvement. title: "[Feature]: " labels: ["enhancement"] body: + - type: dropdown + id: deployment + attributes: + label: Deployment type + description: Are you using the hosted version or a self-hosted instance? + options: + - multica.ai (hosted) + - Self-hosted + validations: + required: true + - type: textarea id: description attributes: