From 9cbd570556c7c92db29b3b22bcc2c1b69a2fb084 Mon Sep 17 00:00:00 2001 From: mackysoft Date: Sat, 5 Mar 2022 13:59:10 +0900 Subject: [PATCH] Create Issue templates --- .github/ISSUE_TEMPLATE/bug-report.yaml | 34 +++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.yaml | 17 ++++++++++ .../ISSUE_TEMPLATE/improvement-request.yaml | 17 ++++++++++ 3 files changed, 68 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yaml create mode 100644 .github/ISSUE_TEMPLATE/improvement-request.yaml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml new file mode 100644 index 0000000..27795a8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -0,0 +1,34 @@ +name: Bug Report +description: File a bug report +title: "[BUG] " +labels: ["bug"] +assignees: + - mackysoft +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - 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: input + id: version + attributes: + label: Package Version + description: What version of this package were you running? + placeholder: ex. 1.1.2 + validations: + required: true + - type: input + id: unity-version + attributes: + label: Unity Version + description: What version of Unity were you running? + placeholder: ex. 2020.3.24f1 \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-request.yaml b/.github/ISSUE_TEMPLATE/feature-request.yaml new file mode 100644 index 0000000..8ed401b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yaml @@ -0,0 +1,17 @@ +name: Feature Request +description: Suggest an idea for this library +title: "[FEATURE] " +labels: ["enhancement"] +assignees: + - mackysoft +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! + - type: textarea + id: feature-description + attributes: + label: Feature destription + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/improvement-request.yaml b/.github/ISSUE_TEMPLATE/improvement-request.yaml new file mode 100644 index 0000000..2826a11 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/improvement-request.yaml @@ -0,0 +1,17 @@ +name: Improvement Request +description: Suggest an improve for this library +title: "[IMPROVE] " +labels: ["enhancement"] +assignees: + - mackysoft +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this improvement request! + - type: textarea + id: improvement-description + attributes: + label: Improvement destription + validations: + required: true \ No newline at end of file