12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- name: Bug Report
- description: File a bug report to help us improve HelixDB
- title: "[Bug]: "
- labels: ["bug", "triage"]
- body:
- - type: markdown
- attributes:
- value: |
- Thanks for taking the time to fill out this bug report!
- - type: textarea
- id: what-happened
- attributes:
- label: What happened?
- description: Also tell us, what did you expect to happen?
- placeholder: "A clear and concise description of what the bug is..."
- validations:
- required: true
- - type: textarea
- id: reproduction
- attributes:
- label: Steps to reproduce
- description: How can we reproduce this issue?
- placeholder: |
- 1. Start HelixDB with '...'
- 2. Run query '...'
- 3. See error
- validations:
- required: true
- - type: input
- id: version
- attributes:
- label: Version
- description: What version of HelixDB are you running?
- placeholder: "e.g. 1.0.0"
- validations:
- required: true
- - type: dropdown
- id: environment
- attributes:
- label: Environment
- description: Where are you running HelixDB?
- options:
- - Self-hosted
- - Managed Service
- - Development/Local
- validations:
- required: true
- - type: textarea
- id: logs
- attributes:
- label: Relevant log output
- description: Please copy and paste any relevant log output. This will be automatically formatted into code.
- render: shell
- - type: textarea
- id: additional
- attributes:
- label: Additional context
- description: Add any other context about the problem here
|