forked from tandpfun/skill-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve GitHub issue forms (tandpfun#33)
Co-authored-by: Thijs [Coding] <[email protected]>
- Loading branch information
1 parent
1bfaa27
commit 1566537
Showing
2 changed files
with
44 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,29 @@ | ||
name: 🐛 Bug Report | ||
title: '[BUG REPORT] Bug' | ||
description: A bug in the API or elsewhere | ||
labels: 'bug report' | ||
body: | ||
|
||
- type: input | ||
id: bug | ||
attributes: | ||
label: The bug | ||
description: "A complete of what the bug is" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: steps | ||
attributes: | ||
label: Steps to reproduce | ||
description: "What'd you do to make the bug happen?" | ||
placeholder: "1. Request API..." | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: extra | ||
attributes: | ||
label: Any extra info | ||
validations: | ||
required: 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,15 @@ | ||
name: 💡 Feature Request | ||
title: '[FEATURE REQUEST] Feature' | ||
description: Request a feature with the API | ||
labels: 'feature request' | ||
body: | ||
|
||
# skill name block | ||
- type: input | ||
id: request | ||
attributes: | ||
label: Feature requested | ||
description: "The feature you're requesting. Should have to do with the API." | ||
placeholder: "Add this endpoint because..." | ||
validations: | ||
required: true |