mirror of
https://github.com/hexastack/hexabot
synced 2024-11-22 17:48:21 +00:00
61 lines
1.6 KiB
YAML
61 lines
1.6 KiB
YAML
name: "🐛 Bug Report"
|
|
description: Create a new ticket for a bug, please specify its location.
|
|
title: "🐛 [BUG] - <title>"
|
|
labels: ["bug"]
|
|
body:
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: "Description"
|
|
description: Please enter an explicit description of your issue
|
|
placeholder: Short and explicit description of your incident. Please delete any irrelevant options
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: reprod
|
|
attributes:
|
|
label: "Reproduction steps"
|
|
description: Please enter an explicit description of your issue. Use Screenshot if you can.
|
|
value: |
|
|
1. Go to '...'
|
|
2. Click on '....'
|
|
3. Scroll down to '....'
|
|
4. See error
|
|
render: bash
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: "Logs"
|
|
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
|
render: bash
|
|
validations:
|
|
required: false
|
|
- type: dropdown
|
|
id: browsers
|
|
attributes:
|
|
label: "Browsers"
|
|
description: What browsers are you seeing the problem on ?
|
|
multiple: true
|
|
options:
|
|
- Firefox
|
|
- Chrome
|
|
- Safari
|
|
- Microsoft Edge
|
|
- Opera
|
|
validations:
|
|
required: false
|
|
- type: dropdown
|
|
id: os
|
|
attributes:
|
|
label: "OS"
|
|
description: What is the impacted environment ?
|
|
multiple: true
|
|
options:
|
|
- Windows
|
|
- Linux
|
|
- Mac
|
|
validations:
|
|
required: false
|