From f37718b2de804cf30fe6ca090924b4d5bbbf4176 Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Wed, 23 Feb 2022 10:51:14 +0530 Subject: [PATCH] issue templates added --- .github/ISSUE_TEMPLATE/bug.yml | 51 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature-request.yml | 18 ++++++++ 3 files changed, 70 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000..6b6dc7c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,51 @@ +name: Bug 🐞 +description: Report a bug +labels: [Bug] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! ☺️ + - type: textarea + attributes: + label: Steps to reproduce + validations: + required: true + - type: textarea + attributes: + label: What is expected? + validations: + required: true + - type: textarea + attributes: + label: What is actually happening? + validations: + required: true + - type: input + attributes: + label: NodeJS Version + description: Run "node --version" in terminal for node version + placeholder: v16.14.0 + validations: + required: true + - type: input + attributes: + label: Package manager name & version + placeholder: yarn 11.6.2 + validations: + required: true + - type: input + attributes: + label: Browser name & version + placeholder: Chrome Version 98.0.4758.102 + validations: + required: true + - type: input + attributes: + label: Device on which you tested + placeholder: Ubuntu 21.10 64-bit + validations: + required: true + - type: textarea + attributes: + label: Any additional comments? \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..ec4bb38 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 0000000..e41108d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,18 @@ +name: Feature request ✨ +description: Suggest an idea or ask for a feature that you would like to have +labels: [feat-req] +body: + - type: markdown + attributes: + value: | + Thanks for letting us know how we can improve our product! ☺️ + - type: textarea + attributes: + label: What problem does this feature solve? + validations: + required: true + - type: textarea + attributes: + label: What does the proposed solution look like? + validations: + required: true \ No newline at end of file