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.
31 lines
845 B
YAML
31 lines
845 B
YAML
name: Feature suggestion
|
|
description: Suggestion a new feature for LanceDB
|
|
title: "Feature: "
|
|
labels: [enhancement]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Share a new idea for a feature or improvement. Be sure to search existing
|
|
issues first to avoid duplicates.
|
|
- type: dropdown
|
|
id: sdk
|
|
attributes:
|
|
label: SDK
|
|
description: Which SDK are you using? This helps us prioritize.
|
|
options:
|
|
- Python
|
|
- Node
|
|
- Rust
|
|
default: 0
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
description: |
|
|
Describe the feature and why it would be useful. If applicable, consider
|
|
providing a code example of what it might be like to use the feature.
|
|
validations:
|
|
required: true |