1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 23:19:08 +00:00
conky/.github/ISSUE_TEMPLATE/bug_report.yml

83 lines
2.3 KiB
YAML
Raw Normal View History

2022-10-04 13:56:44 +00:00
name: 🐞 Bug Report
2022-10-04 14:07:25 +00:00
description: "File a bug report: crashes, unexpected behaviour, and other errors go here."
2022-10-04 13:56:44 +00:00
title: "[Bug]: "
labels: ["bug", "triage"]
body:
- type: markdown
attributes:
value: |
2022-10-04 14:14:25 +00:00
If you haven't done so already, please take a moment to search the [existing issues](https://github.com/brndnmtthws/conky/issues) to see if this has been previously reported. If not, carry on.
2022-10-04 14:07:25 +00:00
2022-10-04 14:14:25 +00:00
Thanks for taking the time to fill out this bug report!
2022-10-04 13:56:44 +00:00
- type: textarea
id: what-happened
attributes:
label: What happened?
2022-10-04 14:13:47 +00:00
description: >
2022-10-04 14:07:25 +00:00
Describe the problem, what you expected to happen, and any other
relevant info. You can attach logs, stack traces, and config below. If
required, include screenshots here which demonstrate the problem.
placeholder: Here's what happened
2022-10-04 13:56:44 +00:00
validations:
required: true
- type: input
id: version
attributes:
label: Version
description: What version of Conky are you running?
validations:
required: true
2022-10-04 14:07:25 +00:00
- type: dropdown
2022-10-04 13:56:44 +00:00
id: os
2022-10-04 14:15:21 +00:00
validations:
required: true
2022-10-04 13:56:44 +00:00
attributes:
2022-10-04 14:07:25 +00:00
label: Which OS/distro are you seeing the problem on?
options:
- Ubuntu
- Fedora
- Debian
- Arch Linux
- Gentoo
- Linux (other)
- macOS
2022-10-04 13:56:44 +00:00
- type: textarea
id: config
attributes:
label: Conky config
description: Paste your Conky config here if it's relevant.
render: Lua
- type: markdown
attributes:
value: |
2022-10-04 14:07:25 +00:00
## Getting a stack trace
2022-10-04 14:13:47 +00:00
If you are reporting a crash, please attach a stack trace below.
2022-10-04 13:56:44 +00:00
To create one with `gdb`, try the following steps:
```shell
# Start 'conky'
$ gdb conky
# Run 'conky' with a config.
(gdb) run -c ~/.your_conky.conf
# Wait for a crash to occur, then run this.
(gdb) bt full
# ... stack trace output here ...
```
- type: textarea
id: stacktrace
attributes:
2022-10-04 14:07:25 +00:00
label: Stack trace
2022-10-04 14:13:47 +00:00
description: Paste your stacktrace here if you have one.
render: GDB
2022-10-04 13:56:44 +00:00
- 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.
render: Shell