Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .github/ISSUE_TEMPLATE/bug-report.md

This file was deleted.

50 changes: 50 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---

name: Bug report
description: Create a report to help us improve pip-tools.

body:
- type: textarea
id: bug-description
attributes:
label: Describe the Bug
description: >-
A clear and concise description of what the bug is.
validations:
required: true

- type: textarea
id: expected-behaviour
attributes:
label: Expected Behaviour
description: >-
A description of what were you expecting to happen.
validations:
required: true

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one minor indent jumped out at me. I think let's tweak it?

Suggested change
required: true
required: true


- type: textarea
id: reproduction-steps
attributes:
label: Steps to Reproduce
description: >-
Describe the steps to reproduce the bug.
placeholder: |
1. ...
2. ...
3. ...
validations:
required: false

- type: textarea
id: environment
attributes:
label: Environment Versions
description: >-
Describe the environment versions used.
placeholder: |
1. OS Type
2. Python version: `$ python -V`
3. pip version: `$ pip --version`
4. pip-tools version: `$ pip-compile --version`
validations:
required: false
1 change: 1 addition & 0 deletions changelog.d/+3148a12a.contrib.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Refactored the bug report template for better reporting -- by {user}`psthindal`.