-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add issue templates to facilitate the faster resolution of reports
- Loading branch information
Showing
3 changed files
with
159 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: 🐛 Bug Report | ||
description: File a bug report. | ||
labels: [bug] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thanks for taking the time to fill out this bug report! | ||
|
||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the Bug | ||
description: What happened? A clear and concise description of the bug. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected Behavior | ||
description: What did you expect to happened? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Reproduction Steps | ||
description: | | ||
Providing a self-contained, concise code example that can be used to reproduce the issue. | ||
Can help to solve the problem as fast as possible. | ||
For more complex issues provide a repo with the smallest sample that reproduces the bug. | ||
Avoid including business logic or unrelated code, it makes diagnosis more difficult. | ||
The code sample should be an SSCCE. See http://sscce.org/ for details. | ||
In short, please provide a code sample that we can copy/paste, run and reproduce. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Error Logs | ||
render: 'shell' | ||
description: | | ||
Please include full errors, uncaught exceptions, stack traces. | ||
Trigger the issue with WebUI's debug build to add relevant logs. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: suggestion | ||
attributes: | ||
label: Possible Solution | ||
description: If you can suggest fix, include a prototype/workaround/sketch/reference. | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: Please provide the current WebUI version you are using. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: Environment details (OS name and version, etc.) | ||
render: shell | ||
description: | | ||
To fill in this section, you can use on Unix-like systems: | ||
```sh | ||
uname -somr | ||
``` | ||
On Windows you can use: | ||
```sh | ||
cmd /c wmic cpu get systemname,caption | ||
``` | ||
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,6 @@ | ||
blank_issues_enabled: true | ||
|
||
contact_links: | ||
- name: 💬 WebUI Community Support | ||
url: https://github.com/webui-dev/webui/discussions | ||
about: Please can ask and answer questions about WebUI here. |
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,69 @@ | ||
name: 🚀 Feature Request | ||
description: Suggest an idea for this project. | ||
labels: [enhancement] | ||
|
||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the Feature | ||
description: A clear and concise description of the feature you are proposing. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: use-case | ||
attributes: | ||
label: Use Case | ||
description: Why do you need this feature? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: suggestion | ||
attributes: | ||
label: Proposed Solution | ||
description: If you can suggest how the addition or change can be implemented, include a prototype/workaround/sketch/reference implementation. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: other | ||
attributes: | ||
label: Other Information | ||
description: Any alternative solutions or features you considered, a more detailed explanation, stack traces, related issues, links for context, etc. | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: implementation | ||
attributes: | ||
label: Implementation | ||
options: | ||
- label: I may be able to implement the feature. | ||
- label: It might incur a breaking change. | ||
|
||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: Please provide the current WebUI version you are using. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: Environment details (OS name and version, etc.) | ||
render: shell | ||
description: | | ||
To fill in this section, you can use on Unix-like systems: | ||
```sh | ||
uname -somr | ||
``` | ||
On Windows you can use: | ||
```sh | ||
cmd /c wmic cpu get systemname,caption | ||
``` | ||
validations: | ||
required: true |