mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-25 00:06:00 +01:00
improve issue template attributes
This commit is contained in:
parent
3a189c265d
commit
812737b1ce
1 changed files with 52 additions and 23 deletions
75
.github/ISSUE_TEMPLATE/bug.yml
vendored
75
.github/ISSUE_TEMPLATE/bug.yml
vendored
|
@ -1,39 +1,63 @@
|
||||||
name: Bug Report
|
name: Bug Report
|
||||||
description: Something is not working right
|
description: "Something is not working right"
|
||||||
labels: ["bug"]
|
labels: ["bug"]
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: checkboxes
|
||||||
|
id: no-duplicate-issues
|
||||||
attributes:
|
attributes:
|
||||||
value: |
|
label: "Before opening a new issue, take a moment to search through the current open ones."
|
||||||
Before opening a new issue, take a moment to search through the current open ones.
|
description: "Search in the issues sections by clicking [HERE](https://github.com/hyprwm/hyprland/issues?q=)"
|
||||||
|
options:
|
||||||
---
|
- label: "I have checked and did not find a similar issue"
|
||||||
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: ver
|
id: ver
|
||||||
attributes:
|
attributes:
|
||||||
label: Hyprland Version
|
label: "Hyprland Version"
|
||||||
description: "Paste here the output of `hyprctl version`. For hyprland after 0.34.0, paste `hyprctl systeminfo` instead."
|
description: "Paste here the output of `hyprctl version`. For hyprland after 0.34.0, paste `hyprctl systeminfo` instead."
|
||||||
value: "<details>
|
render: shell
|
||||||
<summary>System/Version info</summary>
|
placeholder: |
|
||||||
|
$ hyprctl systeminfo
|
||||||
|
Hyprland, built from branch main at commit 03ebbe18ed8517ee22591eac82cd54322f42cb7d dirty (props: bump ver to 0.34.0).
|
||||||
|
Date: Mon Jan 1 13:03:15 2024
|
||||||
|
Tag: v0.33.1-121-g03ebbe18
|
||||||
|
|
||||||
|
flags: (if any)
|
||||||
|
|
||||||
|
|
||||||
```sh
|
System Information:
|
||||||
|
System name: Linux
|
||||||
<Paste the output of the command here>
|
Node name: Apollo
|
||||||
|
Release: 6.6.8-zen1-1-zen
|
||||||
```
|
Version: #1 ZEN SMP PREEMPT_DYNAMIC Thu, 21 Dec 2023 19:00:41 +0000
|
||||||
|
|
||||||
|
|
||||||
</details>"
|
GPU information:
|
||||||
|
06:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Cezanne [Radeon Vega Series / Radeon Vega Mobile Series] [1002:1638] (rev c6) (prog-if 00 [VGA controller])
|
||||||
|
|
||||||
|
|
||||||
|
os-release: NAME="Arch Linux"
|
||||||
|
PRETTY_NAME="Arch Linux"
|
||||||
|
ID=arch
|
||||||
|
BUILD_ID=rolling
|
||||||
|
ANSI_COLOR="38;2;23;147;209"
|
||||||
|
HOME_URL="https://archlinux.org/"
|
||||||
|
DOCUMENTATION_URL="https://wiki.archlinux.org/"
|
||||||
|
SUPPORT_URL="https://bbs.archlinux.org/"
|
||||||
|
BUG_REPORT_URL="https://bugs.archlinux.org/"
|
||||||
|
PRIVACY_POLICY_URL="https://terms.archlinux.org/docs/privacy-policy/"
|
||||||
|
LOGO=archlinux-logo
|
||||||
|
|
||||||
|
plugins:
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
id: type
|
id: type
|
||||||
attributes:
|
attributes:
|
||||||
label: Bug or Regression?
|
label: "Bug or Regression?"
|
||||||
description: Is this a bug or a regression?
|
description: "Is this a bug or a regression?"
|
||||||
options:
|
options:
|
||||||
- Bug
|
- Bug
|
||||||
- Regression
|
- Regression
|
||||||
|
@ -43,25 +67,30 @@ body:
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: desc
|
id: desc
|
||||||
attributes:
|
attributes:
|
||||||
label: Description
|
label: "Description"
|
||||||
description: "What went wrong?"
|
description: "What went wrong?"
|
||||||
|
placeholder: "..."
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: repro
|
id: repro
|
||||||
attributes:
|
attributes:
|
||||||
label: How to reproduce
|
label: "How to reproduce"
|
||||||
description: "How can someone else reproduce the issue?"
|
description: "How do you reproduce this issue? Please walk us through it, step by step."
|
||||||
|
placeholder: |
|
||||||
|
1. Open a terminal window
|
||||||
|
2. Move it in a very specific way
|
||||||
|
3. Observe
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: logs
|
id: logs
|
||||||
attributes:
|
attributes:
|
||||||
label: Crash reports, logs, images, videos
|
label: "Crash reports, logs, images, videos"
|
||||||
description: |
|
description: |
|
||||||
Anything that can help. Please always ATTACH and not paste them.
|
Anything that can help. Please always ATTACH and not paste them.
|
||||||
Logs can be found in /tmp/hypr
|
Logs can be found in `/tmp/hypr`
|
||||||
Crash reports are stored in ~/.hyprland or $XDG_CACHE_HOME/hyprland
|
Crash reports are stored in `$XDG_CACHE_HOME/hyprland` or `~/.hyprland`
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue