-
-
Notifications
You must be signed in to change notification settings - Fork 88
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
1 parent
e36317c
commit 51e6be5
Showing
3 changed files
with
42 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,20 @@ | ||
name: Create Bug Report | ||
description: Report a bug or something thats unintentional | ||
labels: [bug] | ||
body: | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What is version you're running? | ||
placeholder: iOS 17.1 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: detailed-description | ||
attributes: | ||
label: Start going into detail.. | ||
description: | ||
placeholder: Feather doesn't .... properly, it just crashes. | ||
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 @@ | ||
blank_issues_enabled: false |
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,21 @@ | ||
name: Create Feature Request | ||
description: Request a feature for Feather | ||
labels: [enhancement] | ||
body: | ||
- type: textarea | ||
id: feature-request | ||
attributes: | ||
label: Feature Description | ||
description: | ||
placeholder: I want ... to be added to Feather, because ... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: detailed-description | ||
attributes: | ||
label: Start going into detail.. | ||
description: | ||
placeholder: I think it should also include ..., because of convenience. | ||
validations: | ||
required: false | ||
|