Skip to content

Commit

Permalink
fix: Fix bug report template (#981)
Browse files Browse the repository at this point in the history
Resolves Fix bug issue template #977
  • Loading branch information
drikusroor authored May 6, 2024
1 parent bedd871 commit afedd03
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 91 deletions.
91 changes: 0 additions & 91 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

89 changes: 89 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
name: "🐛 Bug Report"
title: "🐛 [BUG] - <title>"
description: "Create a report to help us improve MUSCLE"
assignees: []
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...
## Screenshots:
Please also post any screenshots of the bug you encountered
value: |
<!-- Short and explicit description of your incident... -->
### Screenshots
<!-- You can upload screenshots of the issue (if any) here... -->
validations:
required: true
- type: input
id: reprod-url
attributes:
label: "Reproduction URL"
description: Please enter your the URL to provide a reproduction of the issue
placeholder: ex. http://acc.amsterdammusiclab.nl/tunetwins
validations:
required: false
- type: textarea
id: reprod
attributes:
label: "Reproduction steps"
description: Please enter an explicit description of your issue
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
- type: textarea
id: context
attributes:
label: "Additional context"
description: Add any other context about the problem here.
placeholder:
validations:
required: false

0 comments on commit afedd03

Please sign in to comment.