From 986caf58080bcda0189bd645e475d09e93bb7e45 Mon Sep 17 00:00:00 2001 From: duwudle Date: Wed, 17 Jan 2024 09:03:30 +0530 Subject: [PATCH 1/2] chore(issue-templates): Use issue forms for bug report (yml format) --- .github/ISSUE_TEMPLATE/---bug-report.md | 30 -------------- .github/ISSUE_TEMPLATE/---bug-report.yml | 53 ++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 30 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/---bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/---bug-report.yml diff --git a/.github/ISSUE_TEMPLATE/---bug-report.md b/.github/ISSUE_TEMPLATE/---bug-report.md deleted file mode 100644 index 84039222..00000000 --- a/.github/ISSUE_TEMPLATE/---bug-report.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: "\U0001F41B Bug report" -about: Create a report to help us improve -title: "[BUG]" -labels: bug -assignees: '' - ---- - -**Describe the bug** 🐛 -A clear and concise description of what the bug is. - -**To Reproduce** 🐣 -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. See error - -**Expected behavior** 🤔 -A clear and concise description of what you expected to happen. - -**Screenshots** 🧐 -If applicable, add screenshots to help explain your problem. - -**Desktop (please complete the following information):** 🤖 - - OS: [e.g. Linux] - - Version [e.g. 22] - -**Additional context** 📝 -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/---bug-report.yml b/.github/ISSUE_TEMPLATE/---bug-report.yml new file mode 100644 index 00000000..52f043a3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/---bug-report.yml @@ -0,0 +1,53 @@ +name: "\U0001F41B Bug report" +description: Create a report to help us improve +title: "[BUG]" +labels: ["bug"] +body: + - type: textarea + attributes: + label: Describe the bug 🐛 + description: A clear and concise description of what the bug is. + placeholder: | + Your description goes here... + + - type: textarea + attributes: + label: To Reproduce 🐣 + placeholder: | + Steps to reproduce the behavior: + 1. Go to '...' + 2. Click on '....' + 3. See error + + - type: textarea + attributes: + label: Expected behavior 🤔 + description: A clear and concise description of what you expected to happen. + placeholder: | + Your description goes here... + + - type: textarea + attributes: + label: Screenshots 🧐 + description: If applicable, add screenshots to help explain your problem. + placeholder: | + Attach your screenshots here... + + - type: input + attributes: + label: Your operating system name + placeholder: For example, Linux + + - type: input + attributes: + label: Your operating system version + placeholder: For example, v22 + + - type: textarea + attributes: + label: Additional context 📝 + description: Add any other context about the problem here. + placeholder: | + Your additional context goes here... + + From 6a2847d2527e02e891af8e63487e15b507e8b08c Mon Sep 17 00:00:00 2001 From: duwudle Date: Wed, 17 Jan 2024 09:07:14 +0530 Subject: [PATCH 2/2] chore(issue-templates): Use issue forms for feature request (yml format) --- .github/ISSUE_TEMPLATE/---feature-request.md | 20 ----------- .github/ISSUE_TEMPLATE/---feature-request.yml | 34 +++++++++++++++++++ 2 files changed, 34 insertions(+), 20 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/---feature-request.md create mode 100644 .github/ISSUE_TEMPLATE/---feature-request.yml diff --git a/.github/ISSUE_TEMPLATE/---feature-request.md b/.github/ISSUE_TEMPLATE/---feature-request.md deleted file mode 100644 index 0d849eab..00000000 --- a/.github/ISSUE_TEMPLATE/---feature-request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: "\U0001F4A1 Feature request" -about: Suggest an idea for this project -title: "\U0001F4A1 [FEAT]" -labels: enhancement -assignees: '' - ---- - -**Is your feature request related to a problem? 😢 Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** 🤔 -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** 🧐 -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** 📝 -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/---feature-request.yml b/.github/ISSUE_TEMPLATE/---feature-request.yml new file mode 100644 index 00000000..6fc2f0c6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/---feature-request.yml @@ -0,0 +1,34 @@ +name: "\U0001F4A1 Feature request" +description: Suggest an idea for this project +title: "\U0001F4A1 [FEAT]" +labels: ["enhancement"] +body: + - type: textarea + attributes: + label: Is your feature request related to a problem? 😢 Please describe. + description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + placeholder: | + Your description goes here... + + - type: textarea + attributes: + label: Describe the solution you'd like 🤔 + description: A clear and concise description of what you want to happen. + placeholder: | + Your description goes here... + + - type: textarea + attributes: + label: Describe alternatives you've considered 🧐 + description: A clear and concise description of any alternative solutions or features you've considered. + placeholder: | + Your description goes here... + + - type: textarea + attributes: + label: Additional context 📝 + description: Add any other context about the problem here. + placeholder: | + Your additional context goes here... + +