mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 22:02:35 +00:00
chore(gh): Temp move to old Issue templates
They aren't working for me.
This commit is contained in:
parent
2398b73fea
commit
02ed10b0f1
2 changed files with 42 additions and 17 deletions
30
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
30
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
|
@ -1,25 +1,27 @@
|
|||
name: Bug report
|
||||
description: Things not quite working right
|
||||
labels:
|
||||
- 'C-bug'
|
||||
# - 'S-triage'
|
||||
description: An issue with clap, clap_derive or clap_generate
|
||||
labels: 'C-bug'
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Please complete the following tasks
|
||||
options:
|
||||
- label: I have searched the [discussions](https://github.com/clap-rs/clap/discussions)
|
||||
required: true
|
||||
- label: I have searched the existing issues
|
||||
required: true
|
||||
- type: textarea
|
||||
- type: input
|
||||
attributes:
|
||||
label: Description
|
||||
label: Rust Version
|
||||
description: Output of `rustc -V`
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
attributes:
|
||||
label: Version
|
||||
label: Clap Version
|
||||
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.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Minimal reproducible code
|
||||
|
@ -30,14 +32,28 @@ body:
|
|||
```
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Steps to reproduce the bug with the above code
|
||||
description: A command like `cargo run -- options...` or multiple commands.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Actual Behaviour
|
||||
description: When I do like *this*, *that* is happening and I think it shouldn't.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Expected Behaviour
|
||||
description: I think *this* should happen instead.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Additional Context
|
||||
description: Add any other context about the problem here.
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Debug Output
|
||||
|
|
29
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
29
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
|
@ -1,11 +1,10 @@
|
|||
name: Feature request
|
||||
description: Suggest an idea for this project
|
||||
labels:
|
||||
- 'C-enhancement'
|
||||
# - 'S-triage'
|
||||
labels: 'C-enhancement'
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Please complete the following tasks
|
||||
options:
|
||||
- label: I have searched the [discussions](https://github.com/clap-rs/clap/discussions)
|
||||
required: true
|
||||
|
@ -13,17 +12,27 @@ body:
|
|||
required: true
|
||||
- type: input
|
||||
attributes:
|
||||
label: Version
|
||||
label: Clap Version
|
||||
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.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Use Case
|
||||
description: Describe the problem you're trying to solve.
|
||||
label: Describe your use case
|
||||
description: Describe the problem you're trying to solve. This is not mandatory and we *do* consider features without a specific use case, but real problems have priority.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Requirements
|
||||
description: Describe what is needed to satisfy your use case.
|
||||
label: Describe the solution you'd like
|
||||
description: Please explain what the wanted solution should look like. You are **strongly encouraged** to attach a snippet of (pseudo)code.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Possible Solutions
|
||||
description: A clear and concise description of any solutions or features you've managed to come up with.
|
||||
label: Alternatives, if applicable
|
||||
description: A clear and concise description of any alternative solutions or features you've managed to come up with.
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Additional Context
|
||||
description: Add any other context about the feature request here.
|
||||
|
|
Loading…
Reference in a new issue