Skip to content

Commit

Permalink
Update bug_report.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Nov 25, 2023
1 parent 4b9e794 commit 1fbeb3c
Showing 1 changed file with 65 additions and 38 deletions.
103 changes: 65 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -1,38 +1,65 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: ["bug"]
assignees:
- octocat
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
value: "A bug happened!"
validations:
required: true
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to reproduce
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
value: |
1. step one...
2. step two...
validations:
required: true
- type: dropdown
id: browsers
attributes:
label: What browsers are you seeing the problem on?
multiple: true
options:
- Chrome
- Firefox
- LibreWolf
- Opera
- Opera Gx
- Edge
- Internet
- Chromium
- Brave
- Vivaldi
- Safari
- type: textarea
id: logs
attributes:
label: Relevant log output
description: |
Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
If you use python enable logging by
```python
import logging
logging.basicConfig(level=logging.DEBUG)
```
If you use rust try enabling by setting environment variable
```shell
RUST_LOG=trace
```
render: shell

0 comments on commit 1fbeb3c

Please sign in to comment.