-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(templates): bug-report,feature req templates
- Loading branch information
Showing
3 changed files
with
57 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,40 @@ | ||
name: Bug report | ||
description: Report a problem | ||
labels: [bug] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: "Description" | ||
description: "A brief summary of the issue" | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: "Software Version" | ||
description: "Please provide the version number, e.g., `0.1.1`" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Steps to Reproduce" | ||
description: "Detailed steps to reproduce the issue. If possible, please provide a sample command or actions taken." | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Expected Behavior" | ||
description: "A clear description of what you expected to happen" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Actual Behavior" | ||
description: "A description of the behavior you observed. Feel free to include images, gifs, or any other supporting materials." | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Additional Information" | ||
description: "Any additional information that might be helpful in understanding the context or environment in which the issue occurred" | ||
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 @@ | ||
blank_issues_enabled: 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,16 @@ | ||
name: Feature request | ||
description: Describe a feature you want to see | ||
labels: [feature-request] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: "Description" | ||
description: "A clear and concise description of the feature you are requesting" | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: "Related Documentation or Links" | ||
description: "Provide any supporting documents, links, or references that can help in understanding or implementing the feature." | ||
validations: | ||
required: false |