From af590cc88d5ab40e997b956b2f20e22b37eaa4b9 Mon Sep 17 00:00:00 2001 From: James <119134081+2jammers@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:11:05 -0600 Subject: [PATCH] append issue templates --- .github/ISSUE_TEMPLATE/bug.yml | 34 ++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/enhancement.yml | 26 ++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml create mode 100644 .github/ISSUE_TEMPLATE/enhancement.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000..2c61f3a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,34 @@ +name: Bug Report +description: Report an issue you come across in this project +labels: ["bug", "triage", "review"] +body: + - type: checkboxes + id: check + attributes: + label: Original + description: Be sure that a change related to this issue isn't already pending, and a similar issue does not exist. + options: + - label: My issue is original + required: true + - type: textarea + id: description + attributes: + label: Description + description: Give a detailed description on the bug you are experiencing. + validations: + required: true + - type: textarea + id: repro + attributes: + label: Reproduction + description: A bullet-pointed list in the order to reproduce the bug. + validations: + required: true + - type: textarea + id: logs + attributes: + label: Output + description: Copy the exact error, and omit the date + time prefixes if any. + render: shell + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/enhancement.yml b/.github/ISSUE_TEMPLATE/enhancement.yml new file mode 100644 index 0000000..be10306 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.yml @@ -0,0 +1,26 @@ +name: Enhancement +description: Request a feature that you think would be nice to include in this project +labels: ["enhancement", "review"] +body: + - type: checkboxes + id: check + attributes: + label: Original + description: Be sure that a change related to this issue isn't already pending, and a similar issue does not exist. + options: + - label: My issue is original + required: true + - type: textarea + id: description + attributes: + label: Description + description: Give a detailed description on the feature you're proposing. + validations: + required: true + - type: textarea + id: repro + attributes: + label: Objective + description: What should this feature achieve, and why should it be added? + validations: + required: true