-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to yaml forms for issue templates
- Loading branch information
1 parent
9f52d1d
commit 4815340
Showing
4 changed files
with
72 additions
and
35 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
labels: ["bug"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Description | ||
description: Describe the bug that occurs. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
description: How can you reproduce this bug? You can also describe how you encountered the bug if you're unsure of how to make it happen again. | ||
placeholder: | | ||
For example: | ||
1. Run `ferium ...` | ||
2. ... doesn't properly change | ||
3. Run command again | ||
4. ... changes properly | ||
... | ||
- type: dropdown | ||
attributes: | ||
label: Operating System | ||
description: The operating system are you encountered the bug on. | ||
options: | ||
- Windows | ||
- Linux | ||
- macOS | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: Are you using the latest version of ferium? | ||
description: The bug you encountered might have been fixed in a newer version, make sure you have the [latest version](https://github.com/gorilla-devs/ferium/releases/latest). | ||
options: | ||
- label: I am using the latest version of ferium | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Additional Information | ||
description: Any additional information you would like to provide. You can even drop images or videos here. | ||
|
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Feature Request | ||
description: Suggest a new feature for the project. | ||
labels: ["enhancement"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: The Problem | ||
description: What problem do you have, that this feature could resolve? | ||
placeholder: | | ||
For example: | ||
I cannot do ... | ||
I have to do ... every time. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Your Solution(s) | ||
description: Have you thought of ways ferium can solve your problem? If so, share them here. | ||
placeholder: | | ||
For example: | ||
Ferium could do ... | ||
Instead of doing ..., ferium should ... instead. | ||