Skip to content

Commit 2003511

Browse files
committed
fix(bug-report-template): improve bug reporting and addressing reviewer comments
1 parent fd72abc commit 2003511

2 files changed

Lines changed: 50 additions & 42 deletions

File tree

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 0 additions & 42 deletions
This file was deleted.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
3+
name: Bug report
4+
description: Create a report to help us improve pip-tools.
5+
6+
body:
7+
- type: textarea
8+
id: bug-description
9+
attributes:
10+
label: Describe the Bug
11+
description: >-
12+
A clear and concise description of what the bug is.
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: expected-behaviour
18+
attributes:
19+
label: Expected Behaviour
20+
description: >-
21+
A description of what were you expecting to happen.
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: reproduction-steps
27+
attributes:
28+
label: Steps to Reproduce
29+
description: >-
30+
Describe the steps to reproduce the bug.
31+
placeholder: |
32+
1. ...
33+
2. ...
34+
3. ...
35+
validations:
36+
required: false
37+
38+
- type: textarea
39+
id: environment
40+
attributes:
41+
label: Environment Versions
42+
description: >-
43+
Describe the environment versions used.
44+
placeholder: |
45+
1. OS Type
46+
2. Python version: `$ python -V`
47+
3. pip version: `$ pip --version`
48+
4. pip-tools version: `$ pip-compile --version`
49+
validations:
50+
required: false

0 commit comments

Comments
 (0)