clap/.github/ISSUE_TEMPLATE/bug_report.yml

47 lines
1.4 KiB
YAML
Raw Normal View History

2021-02-26 00:33:31 +00:00
name: Bug report
2021-11-17 15:12:40 -06:00
description: Things not quite working right
2021-02-26 00:33:31 +00:00
labels: 'T: bug'
body:
- type: checkboxes
attributes:
options:
- label: I have searched the [discussions](https://github.com/clap-rs/clap/discussions)
- label: I have searched the existing issues
2021-11-17 15:12:40 -06:00
- type: textarea
2021-02-26 00:33:31 +00:00
attributes:
2021-11-17 15:12:40 -06:00
label: Description
2021-02-26 00:33:31 +00:00
validations:
required: true
- type: input
attributes:
2021-11-17 15:12:40 -06:00
label: Version
2021-02-26 00:33:31 +00:00
description: Can be found in Cargo.lock or Cargo.toml of your project (i.e. `grep clap Cargo.lock`). PLEASE DO NOT PUT "latest" HERE, use precise version. Put `master` (or other branch) if you're using the repo directly.
- type: textarea
attributes:
label: Minimal reproducible code
description: Please write a minimal complete program which has this bug. Do not point to an existing repository.
value: |
```rust
2021-02-26 00:45:53 +00:00
fn main() {}
2021-02-26 00:33:31 +00:00
```
validations:
required: true
- type: textarea
attributes:
label: Actual Behaviour
2021-02-26 00:45:53 +00:00
description: When I do like *this*, *that* is happening and I think it shouldn't.
2021-02-26 00:33:31 +00:00
- type: textarea
attributes:
label: Expected Behaviour
2021-02-26 00:45:53 +00:00
description: I think *this* should happen instead.
2021-02-26 00:33:31 +00:00
- type: textarea
attributes:
label: Debug Output
description: |
Compile clap with `debug` feature:
```toml
[dependencies]
clap = { version = "*", features = ["debug"] }
```