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 ++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_report.yml | 64 ------------------------------ .github/ISSUE_TEMPLATE/feature.yml | 27 +++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 36 ----------------- 4 files changed, 91 insertions(+), 100 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/feature.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml (limited to '.github') 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. + + + + + + diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml deleted file mode 100644 index 1b6a4674..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ /dev/null @@ -1,64 +0,0 @@ -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.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 00000000..0d13534c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,27 @@ +name: Feature Request +description: I'd like to request additional functionality +labels: ["enhancement"] + +body: + - type: markdown + attributes: + value: | + Before opening a new issue, take a moment to search through the current open ones. + + --- + + - type: textarea + id: desc + attributes: + label: Description + description: "Provide a clear and concise description of the feature you'd like to see added" + validations: + required: true + + - type: textarea + id: desc + attributes: + label: Proposed Solution + description: "If you have a specific solution in mind, describe it here" + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml deleted file mode 100644 index 89ccd0b4..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Feature request -description: I'd like to request additional functionality -labels: ["enhancement"] - -body: - - type: checkboxes - attributes: - label: Already requested ? * - description: Before opening a new feature request, 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: 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 \ No newline at end of file -- cgit v1.2.3