-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: General repository touch-up (#152)
* docs: issue forms * chore: vanity * docs: redirect to own repository * chore: rename file
- Loading branch information
Showing
8 changed files
with
91 additions
and
49 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
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
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,56 @@ | ||
name: Bug report | ||
description: Report an issue. | ||
labels: [bug, need repro] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for filing an issue! If you are here to ask a question, use Discord instead: https://discord.gg/djs | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Issue description | ||
description: Describe the issue in as much detail as possible. | ||
placeholder: | | ||
Steps to reproduce with below code sample: | ||
1. Do thing | ||
2. Do thing in Discord client | ||
3. Observe behavior | ||
4. See error logs below | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: code_sample | ||
attributes: | ||
label: Code sample | ||
description: | | ||
Your code sample should be: | ||
1. Minimal - Use as little code as possible that still produces the same problem (and is understandable) | ||
2. Complete - Provide all parts someone else needs to reproduce your problem | ||
3. Reproducible - Test the code you're about to provide to make sure it reproduces the problem | ||
This will be automatically formatted into code, so no need for backticks. | ||
render: TypeScript | ||
- type: textarea | ||
id: versions | ||
attributes: | ||
label: Versions | ||
description: List necessary versions here. This includes your package version, runtime version, operating system etc. | ||
placeholder: | | ||
- @discordjs/opus xx.yy.zz (`npm ls @discordjs/opus`) | ||
- Node.js xx.yy.zz (`node --version`) | ||
- TypeScript xx.yy.zz (`npm ls typescript` if you use it) | ||
- macOS Ventura xx.yy.zz | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: priority | ||
attributes: | ||
label: Issue priority | ||
description: Please be realistic. If you need to elaborate on your reasoning, please use the issue description field above. | ||
options: | ||
- Low (slightly annoying) | ||
- Medium (should be fixed soon) | ||
- High (immediate attention needed) | ||
validations: | ||
required: true |
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,29 @@ | ||
name: Feature request | ||
description: Request a new feature. | ||
labels: [feature request] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Feature | ||
description: A clear and concise description of what the problem is, or what feature you want to be implemented. | ||
placeholder: I'm always frustrated when..., Discord has recently released..., A good addition would be... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Ideal solution or implementation | ||
description: A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Alternative solutions or implementations | ||
description: A clear and concise description of any alternative solutions or features you have considered. | ||
- type: textarea | ||
id: additional_context | ||
attributes: | ||
label: Other context | ||
description: Any other context, screenshots, or file uploads that help us understand your feature request. |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
**Please describe the changes this PR makes and why it should be merged:** | ||
## Description | ||
|
||
**Semantic versioning classification:** | ||
<!-- Please describe the changes this pull request makes and why it should be merged. --> | ||
|
||
- [ ] This PR changes the library's interface (methods or parameters added) | ||
- [ ] This PR includes breaking changes (methods removed or renamed, parameters moved or removed) | ||
- [ ] This PR **only** includes non-code changes, like changes to documentation, README, etc. | ||
- [ ] Code changes have been tested, or there are no code changes |