aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJa.KooLit <85185940+JaKooLit@users.noreply.github.com>2025-01-12 14:51:49 +0900
committerGitHub <noreply@github.com>2025-01-12 14:51:49 +0900
commit1a51c1c781bd92be657a9bb74685a86d9c76c733 (patch)
tree48d22a66e91b124f517ce52b5455a868d4cc982e /.github
parentb0168284df23c1d5c4967685d814732f354ed8f6 (diff)
parent4a8b493fdb60ee5b055bb8cf4e9b26826e8ef5db (diff)
Merge pull request #516 from JaKooLit/main
Main to development
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/bug.yml83
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md47
-rw-r--r--.github/ISSUE_TEMPLATE/custom.md47
-rw-r--r--.github/ISSUE_TEMPLATE/documentation-update.yml30
-rw-r--r--.github/ISSUE_TEMPLATE/documentation_update.md24
-rw-r--r--.github/ISSUE_TEMPLATE/feature.yml38
-rw-r--r--.github/ISSUE_TEMPLATE/feature_request.md28
7 files changed, 151 insertions, 146 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml
new file mode 100644
index 00000000..91106f32
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug.yml
@@ -0,0 +1,83 @@
+name: Bug Report
+description: Something is not working right
+title: "[Bug]: "
+labels: ["bug"]
+assignees:
+ - JaKooLit
+
+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"
+ - "Not sure"
+ validations:
+ required: true
+
+ - type: textarea
+ id: ver
+ attributes:
+ label: System Info and Version
+ description: |
+ Paste the output of `inxi --full` here.
+ install inxi if command not found.
+ value: "<details>
+ <summary>System/Version info</summary>
+
+
+ ```
+
+ <Paste the output of the command here, without removing any formatting around this>
+
+ ```
+
+
+ </details>"
+ validations:
+ required: true
+
+ - type: textarea
+ 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 Hyprland Dots version.
+ 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.
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index 12a598b0..00000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-name: Bug report
-about: Create a report to help us improve
-title: "[Bug]: Short description of the issue"
-labels: "Something isn't working"
----
-
-## Bug Report
-
-### Description
-
-[Provide a clear and concise description of the bug.]
-
-### Steps to Reproduce
-
-1. [First Step]
-2. [Second Step]
-3. [and so on...]
-
-### Expected Behavior
-
-[What did you expect to happen?]
-
-### Actual Behavior
-
-[What actually happened?]
-
-### Screenshots
-
-[If applicable, add screenshots to help explain your problem.]
-
-### Environment
-
-[Please add any other relevant information about the bug and remove the unnecessary lines.]
-
-### show output of `inxi -CGIsSMnr` install package `inxi` if not exist
-show output here
-```
-
-
-```
-
-or you can also run `inxi -CGIsSMnr >diag.txt` and attach diag.txt
-
-### Additional Information
-
-[Add any other information about the problem here. For example, you might include the error message, any recent changes that you made to the project, or any other relevant details.]
diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md
deleted file mode 100644
index 7d1d7e3e..00000000
--- a/.github/ISSUE_TEMPLATE/custom.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-name: Custom template
-about: Use this template to submit a custom issue
-title: "[Custom]: Short description of the issue"
-labels: "custom"
----
-
-## Custom Template
-
-### Description
-
-[Provide a clear and concise description of the issue or request.]
-
-### Steps to Reproduce (if applicable)
-
-1. [First Step]
-2. [Second Step]
-3. [and so on...]
-
-### Expected Behavior
-
-[What did you expect to happen?]
-
-### Actual Behavior
-
-[What actually happened?]
-
-### Screenshots (if applicable)
-
-[If applicable, add screenshots to help explain your problem.]
-
-### Proposed Solution (if applicable)
-
-[If you have a specific solution in mind, describe it here. If not, you can skip this section.]
-
-### Additional Information
-
-[Add any other information about the issue or request here. For example, you might include links to similar features in other projects, or screenshots or diagrams to help explain your idea.]
-
-### show output of `inxi -CGIsSMnr` install package `inxi` if not exist
-show output here
-```
-
-
-```
-
-or you can also run `inxi -CGIsSMnr >diag.txt` and attach diag.txt \ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/documentation-update.yml b/.github/ISSUE_TEMPLATE/documentation-update.yml
new file mode 100644
index 00000000..3e3e8c22
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/documentation-update.yml
@@ -0,0 +1,30 @@
+name: Documentation update
+description: Propose a change to the project documentation wiki
+title: "[Documentation update]: "
+labels: ["documentation_update"]
+assignees:
+ - JaKooLit
+
+body:
+ - type: textarea
+ id: desc
+ attributes:
+ label: Description
+ description: "Provide a clear and concise description of the documentation update"
+ validations:
+ required: true
+
+ - type: textarea
+ id: repro
+ attributes:
+ label: Proposed Solution
+ description: "Provide a clear and concise description of the updated documentation that you'd like to see added"
+ validations:
+ required: true
+
+ - type: textarea
+ id: logs
+ attributes:
+ label: install links, images or videos
+ description: |
+ Add any other information about the documentation update here. For example, you might include links to similar documentation in other projects, or screenshots or diagrams to help explain your idea
diff --git a/.github/ISSUE_TEMPLATE/documentation_update.md b/.github/ISSUE_TEMPLATE/documentation_update.md
deleted file mode 100644
index b75d92f0..00000000
--- a/.github/ISSUE_TEMPLATE/documentation_update.md
+++ /dev/null
@@ -1,24 +0,0 @@
----
-name: Documentation update
-about: Propose a change to the project documentation
-title: "[Docs]: Short description of the change"
-labels: "documentation update"
----
-
-## Documentation Update
-
-### Description
-
-[Provide a clear and concise description of the documentation update you'd like to see made.]
-
-### Current Documentation
-
-[Provide a link to the current documentation or describe where it can be found.]
-
-### Proposed Documentation
-
-[Provide a clear and concise description of the updated documentation that you'd like to see added.]
-
-### Additional Information
-
-[Add any other information about the documentation update here. For example, you might include links to similar documentation in other projects, or screenshots or diagrams to help explain your idea.]
diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml
new file mode 100644
index 00000000..6143d176
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature.yml
@@ -0,0 +1,38 @@
+name: Feature Request
+description: I'd like to propose some changes and enhancements
+title: "[Enhancement]: "
+labels: ["enhancement"]
+assignees:
+ - JaKooLit
+
+body:
+ - type: checkboxes
+ attributes:
+ label: Already reported ? *
+ description: Before opening a new feature request, please take a moment to search through the current open and closed issues / request to check if it already exists.
+ options:
+ - label: I have searched the existing open and closed request.
+ required: true
+
+ - type: textarea
+ id: desc
+ attributes:
+ label: Description
+ description: "Describe your idea?"
+ validations:
+ required: true
+
+ - type: textarea
+ id: repro
+ attributes:
+ label: Proposed Solution
+ description: "describe if you have a specific solution in mind"
+ validations:
+ required: true
+
+
+
+
+
+
+
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index bd64d0a0..00000000
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-name: Feature request
-about: Suggest a feature for this project
-title: "[Feature Request]: Short description of the feature"
-labels: "enhancement, needs triage, feature request"
----
-
-## Feature Request
-
-### Description
-
-[Provide a clear and concise description of the feature you'd like to see added.]
-
-### Use Case
-
-[Describe how this feature would be useful to you or to other users of the project.]
-
-### Proposed Solution
-
-[If you have a specific solution in mind, describe it here. If not, you can skip this section.]
-
-### Alternatives
-
-[Are there any alternative solutions or workarounds that you've considered? If so, describe them here.]
-
-### Additional Information
-
-[Add any other information about the feature request here. For example, you might include links to similar features in other projects, or screenshots or diagrams to help explain your idea.]
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage