name: Bug Report
description: Report a bug or unexpected behavior in Velociplot
title: "[Bug]: "
labels: ["bug", "triage"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to report a bug! Please fill out the information below to help us diagnose and fix the issue.
- type: textarea
id: description
attributes:
label: Description
description: A clear and concise description of what the bug is.
placeholder: When I try to..., I expect..., but instead...
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: Steps to Reproduce
description: Minimal code example or steps to reproduce the behavior.
placeholder: |
```rust
use velociplot::prelude::*;
// Your code here
```
render: rust
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What did you expect to happen?
placeholder: The plot should...
validations:
required: true
- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened? Include error messages if any.
placeholder: |
Error: ...
or
The plot shows... instead of...
validations:
required: true
- type: input
id: version
attributes:
label: Velociplot Version
description: Which version of Velociplot are you using?
placeholder: "0.0.1"
validations:
required: true
- type: input
id: rust-version
attributes:
label: Rust Version
description: Output of `rustc --version`
placeholder: "rustc 1.70.0 (90c541806 2023-05-31)"
validations:
required: true
- type: dropdown
id: os
attributes:
label: Operating System
description: What operating system are you using?
options:
- Linux
- macOS
- Windows
- Other
validations:
required: true
- type: textarea
id: additional
attributes:
label: Additional Context
description: Any other context about the problem (screenshots, similar issues, etc.)
placeholder: |
- This only happens when...
- Related to issue #...
- Screenshot: ...
validations:
required: false
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our Code of Conduct
options:
- label: I agree to follow this project's Code of Conduct
required: true