]> git.lizzy.rs Git - rust.git/blob - .github/ISSUE_TEMPLATE/bug_report.yml
Merge commit 'd7b5cbf065b88830ca519adcb73fad4c0d24b1c7' into clippyup
[rust.git] / .github / ISSUE_TEMPLATE / bug_report.yml
1 name: Bug Report
2 description: Create a bug report for Clippy
3 labels: ["C-bug"]
4 body:
5   - type: markdown
6     attributes:
7       value: Thank you for filing a bug report! 🐛
8   - type: textarea
9     id: problem
10     attributes:
11       label: Summary
12       description: >
13         Please provide a short summary of the bug, along with any information
14         you feel relevant to replicate the bug.
15     validations:
16       required: true
17   - type: textarea
18     id: reproducer
19     attributes:
20       label: Reproducer
21       description: Please provide the code and steps to reproduce the bug
22       value: |
23         I tried this code:
24
25         ```rust
26         <code>
27         ```
28
29         I expected to see this happen:
30
31         Instead, this happened:
32   - type: textarea
33     id: version
34     attributes:
35       label: Version
36       description: "Rust version (`rustc -Vv`)"
37       placeholder: |
38         rustc 1.46.0-nightly (f455e46ea 2020-06-20)
39         binary: rustc
40         commit-hash: f455e46eae1a227d735091091144601b467e1565
41         commit-date: 2020-06-20
42         host: x86_64-unknown-linux-gnu
43         release: 1.46.0-nightly
44         LLVM version: 10.0
45       render: text
46   - type: textarea
47     id: labels
48     attributes:
49       label: Additional Labels
50       description: >
51         Additional labels can be added to this issue by including the following
52         command
53       placeholder: |
54         @rustbot label +<label>
55
56         Common labels for this issue type are:
57         * `I-suggestion-causes-error`