Files
WeKnora/.github/ISSUE_TEMPLATE/question.yml
wizardchen cdfc9ce23a chore(release): v0.6.0
Tenant RBAC headline release: 4-tier role matrix (Owner/Admin/
Contributor/Viewer), per-KB resource ownership, per-tenant audit
log, tenant member management, self-service workspaces.

Also: CLI v0.3/v0.4 GA, KB retrieval fan-out across vector stores,
AES-256-GCM credential at-rest, docreader gRPC TLS+Token, Zhipu
embedding, Huawei OBS, vLLM URL for MinerU, Apache Doris compat
modes, server-side user preferences, Go 1.26.0.

See CHANGELOG.md for the full list.

docs(rbac): wire RBAC screenshots into READMEs and RBAC guide

- README.md / README_CN.md / README_JA.md / README_KO.md: replace the
  single member-management thumbnail under the v0.6.0 RBAC highlight
  with a 2×2 showcase (member management, workspace switcher,
  self-service workspace creation, pending invitations).
- docs/RBAC说明.md: add the member-management screenshot to the
  existing 前端实际界面 showcase so the guide is self-contained
  and no longer cross-references README for it.

feat(rbac-ui): link tenant member page to RBAC guide

Add an inline doc-link in the Tenant Members settings page that
opens docs/RBAC说明.md on GitHub in a new tab, complementing the
existing in-app role-matrix popover. New i18n key
tenantMember.learnRbacGuide covered for zh-CN / en-US / ko-KR /
ru-RU.
2026-05-21 16:56:19 +08:00

104 lines
3.0 KiB
YAML

name: ❓ Question
description: Ask a question about WeKnora or seek help
title: "[Question]: "
labels: ["question", "needs-triage"]
body:
- type: markdown
attributes:
value: |
Welcome! Please provide enough information so we can help you effectively.
- type: dropdown
id: category
attributes:
label: Question Category
description: Select the category of your question
options:
- Installation & Deployment
- Configuration
- Usage
- Performance
- Integration
- Other
validations:
required: true
- type: textarea
id: question
attributes:
label: Question Description
description: Please describe your question in detail
placeholder: "What problem did you encounter? What help do you need?"
validations:
required: true
- type: textarea
id: context
attributes:
label: Context
description: Please provide relevant context
placeholder: |
- What are you trying to do?
- What outcome do you expect?
- What have you tried so far?
- type: input
id: os
attributes:
label: Operating System
description: The operating system you are using
placeholder: "e.g., macOS 13.0, Ubuntu 20.04, Windows 11"
validations:
required: true
- type: textarea
id: environment
attributes:
label: Other Environment Info
description: Please provide other relevant environment information
placeholder: |
- WeKnora App Version: [concrete version from Settings → System Info, e.g., v0.6.0 — NOT "latest"]
- WeKnora UI Version: [concrete version from Settings → System Info, e.g., v0.6.0]
- Deployment: [e.g., Docker, build from source]
- Other relevant info...
- type: markdown
attributes:
value: |
## 📋 Log Collection Guide (if needed)
If the issue involves errors or requires debugging, please collect logs:
```bash
docker compose logs -f --tail=1000 app docreader postgres
```
- type: textarea
id: logs
attributes:
label: Relevant Logs
description: Paste relevant logs or error messages here if available
placeholder: "Paste logs or error messages..."
render: shell
- type: textarea
id: research
attributes:
label: Resources Already Checked
description: List the docs, issues or other resources you've already checked
placeholder: |
- Docs checked: [e.g., README.md, API.md]
- Issues checked: [e.g., #123, #456]
- Other resources: [e.g., official docs, Stack Overflow]
- type: checkboxes
id: terms
attributes:
label: Confirmation
description: Please confirm the following
options:
- label: I have searched existing issues and documentation
required: true
- label: I have provided enough information to help understand the question
required: true