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: rework issue templates #2349

Merged
merged 1 commit into from
Nov 10, 2021
Merged
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
55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE/1-bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: "\U0001F41B Bug report"
description: Create a report to help us improve
body:
- type: markdown
attributes:
value: |
Thank you for reporting an issue.

This issue tracker is for bugs and issues found within Node SerialPort.
If you require more general support please file an start a discussion on our discussion board https://github.com/serialport/node-serialport/discussions

Having trouble installing? Be sure to check out the installation docs! https://serialport.io/docs/guide-installation

Please fill in as much of the form below as you're able.
- type: input
attributes:
label: SerialPort Version
- type: input
attributes:
label: Node Version
description: Output of `node -v`
- type: input
attributes:
label: Electron Version
description: If applicable
- type: input
attributes:
label: Platform
description: |
UNIX: output of `uname -a`
Windows: output of `"$([Environment]::OSVersion | ForEach-Object VersionString) $(if ([Environment]::Is64BitOperatingSystem) { "x64" } else { "x86" })"` in PowerShell console
- type: input
attributes:
label: Architecture
description: i32/x86? x64? ARM?
- type: input
attributes:
label: Hardware or chipset of serialport
description: Prolific/FTDI/Etc
- type: textarea
attributes:
label: What steps will reproduce the bug?
description: Enter details about your bug, preferably a simple code snippet that can be run using `node` directly without installing third-party dependencies.
- type: textarea
attributes:
label: What happens?
description: If possible please provide textual output instead of screenshots.
- type: textarea
attributes:
label: What should have happened?
description: If possible please provide textual output instead of screenshots.
- type: textarea
attributes:
label: Additional information
description: Tell us anything else you think we should know.
File renamed without changes.
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: ⁉️ Need help with Node SerialPort?
url: https://github.com/nodejs/help
about: Please start a discussion before opening a bug.
Loading