From 927e480b892a7a72a28db7b5147a7e3ede861554 Mon Sep 17 00:00:00 2001 From: Danielle Thomas <146454909+dthomasngrokker@users.noreply.github.com> Date: Thu, 22 Aug 2024 15:18:59 -0400 Subject: [PATCH] fills in issue template --- .github/ISSUE_TEMPLATE/custom.md | 10 --------- .github/ISSUE_TEMPLATE/custom.yml | 35 +++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 10 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/custom.md create mode 100644 .github/ISSUE_TEMPLATE/custom.yml diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md deleted file mode 100644 index 48d5f81..0000000 --- a/.github/ISSUE_TEMPLATE/custom.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -name: Custom issue template -about: Describe this issue template's purpose here. -title: '' -labels: '' -assignees: '' - ---- - - diff --git a/.github/ISSUE_TEMPLATE/custom.yml b/.github/ISSUE_TEMPLATE/custom.yml new file mode 100644 index 0000000..85c94ce --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom.yml @@ -0,0 +1,35 @@ +name: SDK Issue Report +description: File an sdk issue report. + +body: + - type: markdown + attributes: + value: | + Thank you for taking the time to fill out this sdk issue report! + - type: input + id: version + attributes: + label: SDK Version + description: What version of our SDK are you running? + placeholder: 3.14.1 + validations: + required: true + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. + render: shell + + +