From 0cd8404e8731d08f696b3319df8784d1ca564d45 Mon Sep 17 00:00:00 2001 From: Zac0511 Date: Thu, 10 Oct 2024 10:22:14 +0200 Subject: [PATCH] Update and rename bug_report.md to bug_report.yaml --- .github/ISSUE_TEMPLATE/bug_report.md | 25 ----------- .github/ISSUE_TEMPLATE/bug_report.yaml | 59 ++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 25 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 60380f4b..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -**Issue Description** - -**Steps to Reproduce** - -**Expected & Actual Behavior** - -**Addition Information or Screenshots (if applicable)** - -**Deployment** -- [ ] Production (puter.com) -- [ ] Development (`npm run start`) -- [ ] Docker (via `docker run`) -- [ ] Docker (via `docker-compose`) - -**Puter version (if accessible)** -> Click the profile button on the top-right, then "Settings". The version number will be printed at the bottom diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 00000000..e1f6fca0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,59 @@ +name: Bug Report +description: Create a report to help us improve +title: "Bug: " + +body: + - type: markdown + attributes: + value: Please fill this form to report the bug you encoutered on Puter + - type: textarea + id: description + attributes: + label: Issue Description + description: Type a description of what the bug does + validations: + required: true + - type: textarea + id: reproduce + attributes: + label: Steps to reproduce + description: Type how we may reproduce the bug + placeholder: Open the menu, click that button... + validations: + required: false + - type: textarea + id: expected-behaviour + attributes: + label: Expected behaviour + description: Tell us what you would expect to happen if the bug wasn't there + placeholder: Its supposed to... + validations: + required: false + - type: textarea + id: additional-info + attributes: + label: Addition Information or Screenshots (if applicable) + description: You can add any additional informations, such as screenshots of the bug + placeholder: You can add a screenshot by clicking the image icon in the text zone + validations: + required: false + - type: checkboxes + id: deployment + attributes: + label: Deployment + description: Select on which deployment(s) you encountered the bug + options: + - label: Production (puter.com) + - Development (`npm run start`) + - Docker (via `docker run`) + - Docker (via `docker-compose`) + validations: + required: true + - type: input + id: version + attributes: + label: Puter version (if accessible) + description: Type the version of Puter you were using when you encountered the bug + placeholder: Click the profile button on the top-right, then "Settings". The version number will be printed at the bottom + validations: + required: false