From 869bab270b52eaeca8cac3800cb8e160867ada81 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 21:13:24 +0900 Subject: another change on template --- .github/ISSUE_TEMPLATE/bug.yml | 64 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml (limited to '.github/ISSUE_TEMPLATE/bug.yml') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000..1b6a4674 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,64 @@ +name: Bug Report +description: Something is not working right +labels: ["bug"] + +body: + - type: checkboxes + attributes: + label: Already reported ? * + description: Before opening a new bug report, please take a moment to search through the current open and closed issues to check if it already exists. + options: + - label: I have searched the existing open and closed issues. + required: true + + - type: dropdown + id: type + attributes: + label: Regression? + description: | + Regression means that something used to work but no longer does. + options: + - "Yes" + - "No" + validations: + required: true + + - type: textarea + id: ver + attributes: + label: System Info and Version + description: | + Paste the output of `inxi -CGIsSMnr` here. + install inxi if command not found + validations: + required: true + + + - type: textarea + id: desc + attributes: + label: Description + description: "What went wrong? What exactly happened?" + validations: + required: true + + - type: textarea + id: repro + attributes: + label: How to reproduce + description: "How can someone else reproduce the issue?" + validations: + required: true + + - type: textarea + id: logs + attributes: + label: install logs, images or videos + description: | + Anything that can help. Please always ATTACH and not paste them. + + + + + + -- cgit v1.2.3 From b2974905ff7e2d2efd239e0638af5bde1bc4d6db Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 21:24:58 +0900 Subject: Oh its a new github issue template :) --- .github/ISSUE_TEMPLATE/bug.yml | 3 +++ .github/ISSUE_TEMPLATE/feature.yml | 3 +++ 2 files changed, 6 insertions(+) (limited to '.github/ISSUE_TEMPLATE/bug.yml') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 1b6a4674..329c67a1 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -1,6 +1,9 @@ name: Bug Report description: Something is not working right +title: "[Bug]: " labels: ["bug"] +assignees: + - Ja.KooLit body: - type: checkboxes diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index f657365a..776dc364 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -1,6 +1,9 @@ name: Feature Request description: I'd like to propose some changes and enhancements +title: "[Enhancement]: " labels: ["enhancement"] +assignees: + - Ja.KooLit body: - type: checkboxes -- cgit v1.2.3 From 1ac500e5d87d36c191b3343cc548c48ad2ca160c Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 21:53:46 +0900 Subject: updated assignee on issue template --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- .github/ISSUE_TEMPLATE/feature.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to '.github/ISSUE_TEMPLATE/bug.yml') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 329c67a1..f9e57da2 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -3,7 +3,7 @@ description: Something is not working right title: "[Bug]: " labels: ["bug"] assignees: - - Ja.KooLit + - JaKooLit body: - type: checkboxes diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 776dc364..6143d176 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -3,7 +3,7 @@ description: I'd like to propose some changes and enhancements title: "[Enhancement]: " labels: ["enhancement"] assignees: - - Ja.KooLit + - JaKooLit body: - type: checkboxes -- cgit v1.2.3 From 5fd065770fdb04f4fcb59813a4e95f00dd02d522 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 22:23:55 +0900 Subject: updated bug template --- .github/ISSUE_TEMPLATE/bug.yml | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) (limited to '.github/ISSUE_TEMPLATE/bug.yml') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index f9e57da2..d365a34c 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -26,16 +26,39 @@ body: validations: required: true + - type: textarea id: ver attributes: - label: System Info and Version + label: System Info and Hyprland Version description: | - Paste the output of `inxi -CGIsSMnr` here. + Paste the output of `inxi -CGIsSMnr` here. here. If you can't install inxi if command not found + value: "
+ System/Version info + + + ``` + + + + + ``` + + +
" + validations: + required: true + + - type: textarea + id: ver + attributes: + label: KooL's Dots version + description: | + Paste the output of `find ~/.config/hypr/ -type f -name 'v*' -exec basename {} \;` + This is just KooL's Dots hyprland version validations: required: true - - type: textarea id: desc -- cgit v1.2.3 From 120062777c955018754db99d93e9b5821f8c647f Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 22:27:44 +0900 Subject: damn again --- .github/ISSUE_TEMPLATE/bug.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/ISSUE_TEMPLATE/bug.yml') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index d365a34c..39e77f35 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -30,9 +30,9 @@ body: - type: textarea id: ver attributes: - label: System Info and Hyprland Version + label: System Info description: | - Paste the output of `inxi -CGIsSMnr` here. here. If you can't + Paste the output of `inxi -CGIsSMnr` here install inxi if command not found value: "
System/Version info -- cgit v1.2.3 From b1d48fa7de1e8ab37e741876bc1e4503332287ac Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 22:32:32 +0900 Subject: im speechless --- .github/ISSUE_TEMPLATE/bug.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to '.github/ISSUE_TEMPLATE/bug.yml') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 39e77f35..23a833bb 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -26,13 +26,12 @@ body: validations: required: true - - type: textarea id: ver attributes: - label: System Info + label: System Info description: | - Paste the output of `inxi -CGIsSMnr` here + Paste the output of `inxi -CGIsSMnr` here. install inxi if command not found value: "
System/Version info @@ -42,13 +41,12 @@ body: - ```
" validations: - required: true + required: true - type: textarea id: ver -- cgit v1.2.3 From a5ee15ef05f2df3bf1b840d8fd2db3a2fc22919d Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 22:38:44 +0900 Subject: maybe this will work now --- .github/ISSUE_TEMPLATE/bug.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/ISSUE_TEMPLATE/bug.yml') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 23a833bb..529f1eb8 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -32,7 +32,7 @@ body: label: System Info description: | Paste the output of `inxi -CGIsSMnr` here. - install inxi if command not found + install inxi if command not found. value: "
System/Version info @@ -54,7 +54,7 @@ body: label: KooL's Dots version description: | Paste the output of `find ~/.config/hypr/ -type f -name 'v*' -exec basename {} \;` - This is just KooL's Dots hyprland version + This is just KooL's Dots hyprland version. validations: required: true -- cgit v1.2.3 From 7e2d4aa1a9001b3732cb3acb668afe77d4aedc95 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 22:43:47 +0900 Subject: If this will not work I dont know --- .github/ISSUE_TEMPLATE/bug.yml | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) (limited to '.github/ISSUE_TEMPLATE/bug.yml') diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 529f1eb8..91106f32 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -23,15 +23,16 @@ body: options: - "Yes" - "No" + - "Not sure" validations: required: true - type: textarea id: ver attributes: - label: System Info + label: System Info and Version description: | - Paste the output of `inxi -CGIsSMnr` here. + Paste the output of `inxi --full` here. install inxi if command not found. value: "
System/Version info @@ -47,14 +48,14 @@ body:
" validations: required: true - + - type: textarea - id: ver + id: dots attributes: label: KooL's Dots version description: | - Paste the output of `find ~/.config/hypr/ -type f -name 'v*' -exec basename {} \;` - This is just KooL's Dots hyprland version. + Paste the output of `find ~/.config/hypr/ -type f -name 'v*' -exec basename {} \;` + This is just KooL's Hyprland Dots version. validations: required: true @@ -80,9 +81,3 @@ body: label: install logs, images or videos description: | Anything that can help. Please always ATTACH and not paste them. - - - - - - -- cgit v1.2.3