mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-27 15:12:53 +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.
24 lines
612 B
YAML
24 lines
612 B
YAML
name: 'Documentation improvement'
|
|
description: Report an issue with the documentation.
|
|
labels: [documentation]
|
|
|
|
body:
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
description: >
|
|
Describe the issue with the documentation and how it can be fixed or improved.
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: link
|
|
attributes:
|
|
label: Link
|
|
description: >
|
|
Provide a link to the existing documentation, if applicable.
|
|
placeholder: ex. https://lancedb.github.io/lancedb/guides/tables/...
|
|
validations:
|
|
required: false
|