From 6d49c7714b8d5d6e789eacd30aea6f9a97d1be9d Mon Sep 17 00:00:00 2001 From: 2byrds <2byrds@gmail.com> Date: Tue, 5 Nov 2024 20:16:02 -0500 Subject: [PATCH] added issue template, same as the one in keripy Signed-off-by: 2byrds <2byrds@gmail.com> --- .github/ISSUE_TEMPLATE/bug.yaml | 34 +++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature.yaml | 11 ++++++++++ 2 files changed, 45 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature.yaml diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 00000000..94a4f3bc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -0,0 +1,34 @@ +name: "Bug report" +description: Bug report template +title: "A concise description" +labels: ["bug", "triage"] +body: + - type: input + id: version + attributes: + label: Version + validations: + required: true + - type: input + id: Evnironment + attributes: + label: Environment + description: (OS, Python version, deployment environment) + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + validations: + required: true + - type: textarea + id: actual-behavior + attributes: + label: Actual behavior + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps to reproduce + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml new file mode 100644 index 00000000..5f392cd9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -0,0 +1,11 @@ +name: "Feature request" +description: Feature request template +title: "A concise description" +labels: ["feature request"] +body: + - type: textarea + id: desired-behavior + attributes: + label: Feature request description/rationale + validations: + required: true \ No newline at end of file