mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-22 21:09:58 +00:00
This PR adds issue templates, which help two recurring issues: * Users forget to tell us whether they are using the Node or Python SDK * Issues don't get appropriate tags This doesn't force the use of the templates. Because we set `blank_issues_enabled: true`, users can still create a custom issue.
34 lines
952 B
YAML
34 lines
952 B
YAML
name: Bug Report - Node / Typescript
|
|
description: File a bug report
|
|
title: "bug(node): "
|
|
labels: [bug, typescript]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to fill out this bug report!
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: LanceDB version
|
|
description: What version of LanceDB are you using? `npm list | grep vectordb`.
|
|
placeholder: v0.3.2
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: what-happened
|
|
attributes:
|
|
label: What happened?
|
|
description: Also tell us, what did you expect to happen?
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: reproduction
|
|
attributes:
|
|
label: Are there known steps to reproduce?
|
|
description: |
|
|
Let us know how to reproduce the bug and we may be able to fix it more
|
|
quickly. This is not required, but it is helpful.
|
|
validations:
|
|
required: false
|