Add workflows

This commit is contained in:
Damontecres 2025-10-15 15:41:04 -04:00
parent b494c31c72
commit 84dab0f7e7
No known key found for this signature in database
7 changed files with 370 additions and 0 deletions

58
.github/ISSUE_TEMPLATE/bug.yml vendored Normal file
View file

@ -0,0 +1,58 @@
name: "Bug Report"
description: Report a bug
title: "[BUG] - <title>"
labels: [
"bug"
]
body:
- type: textarea
id: description
attributes:
label: "Description"
description: Please enter a description of the bug
validations:
required: true
- type: textarea
id: reprod
attributes:
label: "Reproduction steps"
description: Please enter the steps to reproduce
value: |
1. Click on '...'
2. Scroll to '....'
3. See error
validations:
required: false
- type: input
id: app-version
attributes:
label: "App Version"
description: What version of the app?
placeholder: "v0.1.0"
validations:
required: true
- type: input
id: server
attributes:
label: "Server Version"
description: What version of the server?
placeholder: "10.10.7"
validations:
required: true
- type: input
id: device
attributes:
label: "Device"
description: What device are you using?
placeholder: "NVIDIA Shield TV Pro 2019"
validations:
required: false
- type: textarea
id: logs
attributes:
label: "Logs"
description: Please gather any logs or crash reports and include them here.
placeholder: Review logs for personal information before sharing them here publicly!
render: bash
validations:
required: false

15
.github/ISSUE_TEMPLATE/new-feature.yml vendored Normal file
View file

@ -0,0 +1,15 @@
name: "Feature Request"
description: Request a new feature
title: "[FEA] - <title>"
labels: [
"enhancement"
]
body:
- type: textarea
id: description
attributes:
label: "Description"
description: Please enter a description of the feature
placeholder: "I would like to see..."
validations:
required: true

15
.github/ISSUE_TEMPLATE/question.yml vendored Normal file
View file

@ -0,0 +1,15 @@
name: "Question"
description: Ask a question
title: "[QST] - <title>"
labels: [
"question"
]
body:
- type: textarea
id: description
attributes:
label: "Question"
description: Please enter your question
placeholder: "How do I...?"
validations:
required: true