Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add bug-report issue template #191

Closed
wants to merge 1 commit into from
Closed
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
68 changes: 68 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Bug Report 🐛
description: Create a bug report for pacquet
labels: ["type: bug"]
body:
- type: checkboxes
attributes:
label: Verify latest release
description: "Please try the latest version of pacquet. Some issues may already be fixed in the latest release, so please verify that your issue reproduces before opening a new issue."
options:
- label: I verified that the issue exists in the latest pacquet release
- type: dropdown
attributes:
label: Which area(s) of pacquet are affected? (leave empty if unsure)
multiple: true
options:
- "Dependencies resolver"
- "CLI"
- "Lockfile"
- "Store"
- "Package manager compatibility"
- "Operating System (Windows, MacOS, Linux)"
- "Hooks"
- type: input
attributes:
label: Link to the code that reproduces this issue or a replay of the bug
description: |
A link to a GitHub repository minimal reproduction. If a minimal reproduction can't be created please share a replay of the bug which doesn't require sharing a private repo.
- type: textarea
id: repro
attributes:
label: Reproduction steps
description: "How do you trigger this bug? Please walk us through it step by step."
validations:
required: true
- type: markdown
attributes:
value: ----------------------------
- type: textarea
attributes:
label: Describe the Bug
description: A clear and concise description of what the bug is.
validations:
required: true
- type: markdown
attributes:
value: ----------------------------
- type: textarea
attributes:
label: Expected Behavior
description: A clear and concise description of what you expected to happen.
validations:
required: true
- type: markdown
attributes:
value: ----------------------------
- type: checkboxes
id: operating-systems
attributes:
label: Which operating systems have you used?
description: You may select more than one.
options:
- label: macOS
- label: Windows
- label: Linux
- type: input
attributes:
label: If your OS is a Linux based, which one it is? (Include the version if relevant)
placeholder: Linux, Ubuntu, Debian...
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true