-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
133 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
name: "\U0001F41E Bug report" | ||
description: Report an issue with LiveKit node SDKs | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
Please report security issues by email to security@livekit.io | ||
**Before you start, make sure you have the latest versions of the affected LiveKit npm package installed** | ||
- type: dropdown | ||
id: packages | ||
attributes: | ||
label: Select which package(s) are affected | ||
multiple: true | ||
options: | ||
- \@livekit/rtc-node | ||
- livekit-server-sdk | ||
- examples | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Describe the bug | ||
description: Describe what you are expecting vs. what happens instead. | ||
placeholder: | | ||
### What I'm expecting | ||
### What happens instead | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Reproduction | ||
description: | | ||
A detailed step-by-step guide on how to reproduce the issue or (preferably) a link to a repository that reproduces the issue. | ||
Reproductions must be [short, self-contained and correct](http://sscce.org/) and must not contain files or code that aren't relevant to the issue. | ||
We will prioritize issues that include a working minimal reproduction repository. | ||
placeholder: Reproduction | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Logs | ||
description: | | ||
"Please include logs around the time this bug occurred. | ||
Please try not to insert an image but copy paste the log text." | ||
render: shell | ||
- type: textarea | ||
id: system-info | ||
attributes: | ||
label: System Info | ||
description: | | ||
Please mention the OS (incl. Version) and exact node version on which you are seeing this issue. | ||
For ease of use you can run `npx envinfo --system --binaries --npmPackages "{livekit-*,@livekit/*}"` from within your livekit project, to give us all the needed info about your current environment` | ||
render: shell | ||
placeholder: System, Binaries, Browsers | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: livekit-version | ||
attributes: | ||
label: LiveKit server version | ||
options: | ||
- LiveKit cloud | ||
- latest self hosted version | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: severity | ||
attributes: | ||
label: Severity | ||
options: | ||
- annoyance | ||
- serious, but I can work around it | ||
- blocking an upgrade | ||
- blocking all usage of LiveKit | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Information |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Slack Community Chat | ||
url: https://livekit.io/join-slack | ||
about: Ask questions and discuss with other LiveKit users in real time. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: 'Feature Request' | ||
description: Suggest an idea for this project | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to request this feature! | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Describe the problem | ||
description: Please provide a clear and concise description the problem this feature would solve. The more information you can provide here, the better. | ||
placeholder: I would like to be able to ... in order to solve ... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Describe the proposed solution | ||
description: Please provide a clear and concise description of what you would like to happen. | ||
placeholder: I would like to see ... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Alternatives considered | ||
description: "Please provide a clear and concise description of any alternative solutions or features you've considered." | ||
- type: dropdown | ||
id: importance | ||
attributes: | ||
label: Importance | ||
description: How important is this feature to you? | ||
options: | ||
- nice to have | ||
- would make my life easier | ||
- I cannot use LiveKit without it | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Information | ||
description: Add any other context or screenshots about the feature request here. |