mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-23 18:17:44 +02:00
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.
51 lines
1.4 KiB
YAML
51 lines
1.4 KiB
YAML
name: "Bug Report"
|
|
description: Report a bug — something that's broken, crashes, or behaves incorrectly.
|
|
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:
|
|
label: What happened?
|
|
description: Describe the bug and what you expected instead. Screenshots, error messages, or screen recordings are welcome.
|
|
placeholder: |
|
|
When I do X, Y happens. I expected Z instead.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: reproduction
|
|
attributes:
|
|
label: Steps to reproduce
|
|
description: How can we trigger this bug?
|
|
placeholder: |
|
|
1. Go to '...'
|
|
2. Click on '...'
|
|
3. See error
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: screenshots
|
|
attributes:
|
|
label: Screenshots (optional)
|
|
description: If applicable, add screenshots or screen recordings to help explain the problem.
|
|
|
|
- type: textarea
|
|
id: context
|
|
attributes:
|
|
label: Additional context (optional)
|
|
description: Environment info, logs, or anything else that might help.
|
|
render: shell
|