GIT: templates

Signed-off-by: jokob-sk <jokob.sk@gmail.com>
This commit is contained in:
jokob-sk
2025-12-29 10:49:46 +11:00
parent 494451b316
commit ffdde451d6
3 changed files with 39 additions and 39 deletions

View File

@@ -2,6 +2,20 @@ name: Bug Report
description: 'When submitting an issue enable LOG_LEVEL="trace" and have a look at the docs.' description: 'When submitting an issue enable LOG_LEVEL="trace" and have a look at the docs.'
labels: ['bug 🐛'] labels: ['bug 🐛']
body: body:
- type: dropdown
id: installation_type
attributes:
label: What installation are you running?
options:
- Production (netalertx) 📦
- Dev (netalertx-dev) 👩‍💻
- Home Assistant (addon) 🏠
- Home Assistant fa (full-access addon) 🏠
- Bare-metal (community only support - Check Discord) ❗
- Proxmox (community only support - Check Discord) ❗
- Unraid (community only support - Check Discord) ❗
validations:
required: true
- type: checkboxes - type: checkboxes
attributes: attributes:
label: Is there an existing issue for this? label: Is there an existing issue for this?
@@ -58,20 +72,6 @@ body:
render: yaml render: yaml
validations: validations:
required: false required: false
- type: dropdown
id: installation_type
attributes:
label: What installation are you running?
options:
- Production (netalertx)
- Dev (netalertx-dev)
- Home Assistant (addon)
- Home Assistant fa (full-access addon)
- Bare-metal (community only support - Check Discord)
- Proxmox (community only support - Check Discord)
- Unraid (community only support - Check Discord)
validations:
required: true
- type: checkboxes - type: checkboxes
attributes: attributes:
label: Debug or Trace enabled label: Debug or Trace enabled

View File

@@ -2,6 +2,20 @@ name: Setup help
description: 'When submitting an issue enable LOG_LEVEL="trace" and re-search first.' description: 'When submitting an issue enable LOG_LEVEL="trace" and re-search first.'
labels: ['Setup 📥'] labels: ['Setup 📥']
body: body:
- type: dropdown
id: installation_type
attributes:
label: What installation are you running?
options:
- Production (netalertx) 📦
- Dev (netalertx-dev) 👩‍💻
- Home Assistant (addon) 🏠
- Home Assistant fa (full-access addon) 🏠
- Bare-metal (community only support - Check Discord) ❗
- Proxmox (community only support - Check Discord) ❗
- Unraid (community only support - Check Discord) ❗
validations:
required: true
- type: checkboxes - type: checkboxes
attributes: attributes:
label: Did I research? label: Did I research?
@@ -43,20 +57,6 @@ body:
render: python render: python
validations: validations:
required: false required: false
- type: dropdown
id: installation_type
attributes:
label: What installation are you running?
options:
- Production (netalertx)
- Dev (netalertx-dev)
- Home Assistant (addon)
- Home Assistant fa (full-access addon)
- Bare-metal (community only support - Check Discord)
- Proxmox (community only support - Check Discord)
- Unraid (community only support - Check Discord)
validations:
required: true
- type: textarea - type: textarea
attributes: attributes:
label: app.log label: app.log

View File

@@ -21,7 +21,7 @@ jobs:
let labelsToAdd = []; let labelsToAdd = [];
if (lowerBody.includes('bare-metal')) { if (lowerBody.includes('bare-metal') || lowerBody.includes('proxmox')) {
labelsToAdd.push('bare-metal ❗'); labelsToAdd.push('bare-metal ❗');
} }