Merge pull request #959 from BotBlake/update_issue_template

Update Issue Forms
This commit is contained in:
Odd Stråbø 2024-12-21 02:39:02 +01:00 committed by GitHub
commit 4a515248d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 60 additions and 3 deletions

View file

@ -1,6 +1,5 @@
name: "Bug Report" name: "Bug Report"
description: "Report an issue with the software." description: "Report an issue with the software."
title: "[Bug]: "
labels: ["bug"] labels: ["bug"]
body: body:
- type: textarea - type: textarea
@ -63,7 +62,6 @@ body:
label: "Logs" label: "Logs"
description: "Please provide the logs." description: "Please provide the logs."
placeholder: "Paste your Kodi logs here..." placeholder: "Paste your Kodi logs here..."
render: "python"
validations: validations:
required: true required: true
@ -73,7 +71,6 @@ body:
label: "Server Logs" label: "Server Logs"
description: "Please provide server logs (if relevant)." description: "Please provide server logs (if relevant)."
placeholder: "Paste your server logs here..." placeholder: "Paste your server logs here..."
render: "csharp"
validations: validations:
required: false required: false

View file

@ -0,0 +1,60 @@
name: Feature Request
description: Suggest a feature or enhancement for the project
labels: enhancement
body:
- type: markdown
attributes:
value: |
Thank you for suggesting a new feature! Please take a moment to fill out the following details to help us understand your idea better.
- type: input
id: short-description
attributes:
label: Short Description
description: A brief summary of the feature you are requesting.
placeholder: "Add a short, descriptive title for your feature request."
validations:
required: true
- type: textarea
id: user-story
attributes:
label: User Story
description: |
Please provide a user story for the feature.
placeholder: |
"As a [type of user], I want [a goal] so that [benefit]."
Acceptance Criteria:
[List of measurable criteria to ensure the feature works as intended.]
validations:
required: true
- type: textarea
id: why-needed
attributes:
label: Why is this feature needed?
description: Explain why this feature would be beneficial and how it improves the project.
placeholder: "Describe why this feature would be useful."
validations:
required: true
- type: textarea
id: additional-context
attributes:
label: Additional Context
description: Provide any other details or resources (like screenshots, designs, or links) that might help us understand your request.
placeholder: "Add any additional information here."
validations:
required: false
- type: checkboxes
id: agreement
attributes:
label: Agreement
description: Please confirm the following before submitting.
options:
- label: I have searched the existing issues to ensure this feature has not been requested before.
required: true
- label: I have provided enough detail to explain the value of this feature.
required: true