From ba17206d13b748932fb3273aa03800ddba413f51 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 3 Jan 2025 20:57:13 +0900 Subject: oh got it now --- .github/ISSUE_TEMPLATE/bug_report.md | 70 ------------------------------ .github/ISSUE_TEMPLATE/bug_report.yml | 63 +++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 41 ----------------- .github/ISSUE_TEMPLATE/feature_request.yml | 34 +++++++++++++++ 4 files changed, 97 insertions(+), 111 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 21cc811d..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,70 +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" ---- - -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. - - - - - - diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..0d862bcc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,63 @@ +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. + + + + + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index b3ac7aa6..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -name: Feature request -about: Suggest a feature for this project -title: "[Feature Request]: I'd like to request additional functionality or changes" -labels: "enhancement, feature request" ---- - -name: Feature Request -description: I'd like to request additional functionality -labels: ["enhancement"] -body: - - type: markdown - attributes: - value: | - Before opening a new feature, take a moment to search through the current open ones. - - --- - - - type: textarea - id: desc - attributes: - label: Description - description: "Describe your idea" - validations: - required: true - - - type: textarea - id: desc - attributes: - label: Use case - description: "Describe how this feature would be useful to you or to other users of the project." - validations: - required: true - - - type: textarea - id: desc - attributes: - label: Proposed Solution or alternatives - description: "If you have a specific solution in mind, describe it here." - validations: - required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..92bbc2f5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,34 @@ +name: Feature Request +description: I'd like to request additional functionality +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + Before opening a new feature, take a moment to search through the current open ones. + + --- + + - type: textarea + id: desc + attributes: + label: Description + description: "Describe your idea" + validations: + required: true + + - type: textarea + id: desc + attributes: + label: Use case + description: "Describe how this feature would be useful to you or to other users of the project." + validations: + required: true + + - type: textarea + id: desc + attributes: + label: Proposed Solution or alternatives + description: "If you have a specific solution in mind, describe it here." + validations: + required: true -- cgit v1.2.3