chore: template improvement

This commit is contained in:
TheVisual
2023-08-03 12:18:14 -05:00
committed by GitHub
parent a3afdc5000
commit 2925b52b9d
2 changed files with 25 additions and 34 deletions

View File

@@ -1,64 +1,55 @@
name: "Bug report" name: "Bug report"
description: Report an issue to help the project improve. description: "Report an issue to help the project improve."
title: "bug: <title>" title: "bug: TITLE"
labels: [ labels:
"bug" - "bug"
]
body: body:
- type: textarea - type: textarea
id: description id: description
attributes: attributes:
label: "Description" label: "Description"
description: Please enter an explicit description of your issue description: "Please enter an explicit description of your issue"
placeholder: Short and explicit description of your incident... placeholder: "Short and explicit description of your incident..."
validations: validations:
required: true required: true
- type: textarea - type: textarea
id: reprod id: reprod
attributes: attributes:
label: "Reproduction steps" label: "Reproduction steps"
description: Steps to reproduce the behavior description: "Steps to reproduce the behavior"
value: | value: |
1. Go to '...' 1. Go to `...`
2. Click on '....' 2. Click on `....`
3. Scroll down to '....' 3. Scroll down to `....`
4. See error 4. See error.
render: bash
validations: validations:
required: true required: true
- type: textarea
id: screenshot
attributes:
label: "Screenshots"
description: If applicable, add screenshots to help explain your problem
value: |
![DESCRIPTION](LINK.png)
render: bash
validations:
required: false
- type: textarea - type: textarea
id: logs id: logs
attributes: attributes:
label: "Logs" label: "Logs"
description: Please copy and paste any relevant log output if available description: "Please copy and paste any relevant log output if available"
render: bash render: markdown
validations: validations:
required: false required: false
- type: input - type: input
id: snapchat-version id: snapchat-version
attributes: attributes:
label: "Snapchat Version" label: "Snapchat Version"
description: On which Snapchat version is this happening? description: "On which Snapchat version is this happening?"
placeholder: ex. 12.35.0.45 placeholder: "ex. 12.35.0.45"
validations: validations:
required: true required: true
- type: checkboxes - type: checkboxes
id: terms id: terms
attributes: attributes:
label: Agreement label: "Agreement"
description: By creating this issue I made sure that ... description: "By creating this issue, I agree to the following terms:"
options: options:
- label: I am using the latest stable SnapEnhance version. - label: "I am using the latest stable SnapEnhance version."
required: true - label: "This is not a bug regarding Snapchat+."
- label: There is no issue already describing my problem. - label: "I have provided a detailed description of the issue."
required: true - label: "I have attached a log if deemed neccessary."
- label: "This issue is not a duplicate."
validations:
required: true

View File

@@ -1,6 +1,6 @@
name: "Feature suggestion" name: "Feature suggestion"
description: Suggest a new feature to help the project improve. description: Suggest a new feature to help the project improve.
title: "feat: <title>" title: "feat: TITLE"
labels: [ labels: [
"enhancement" "enhancement"
] ]