From f78f19e247a0ab9ecfbb80ae341ff42a4cadb82d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kotiuk?= Date: Sun, 2 Jun 2024 23:30:31 +0200 Subject: [PATCH] docs: Update issue template to ensure proper content MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Kotiuk --- .github/ISSUE_TEMPLATE/bug_report.md | 48 ----------------- .github/ISSUE_TEMPLATE/bug_report.yaml | 73 ++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 48 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 77ec2d8a6..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: needs triage -assignees: '' ---- - - - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Platform:** - -- OS: [e.g. iOS] -- Browser: [e.g. Chrome, Safari] -- Memories Version: [e.g. 4.1.0] -- Nextcloud Version: [e.g. 25.0.6] -- PHP Version: [e.g. 8.1] - -**Additional context** -Add any other context about the problem here. - -- Any errors in the JS console? -- Any errors in the Nextcloud server logs? diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 000000000..a7ab9ce56 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,73 @@ +--- +name: Bug report +description: Create a report to help us improve +labels: [needs triage] +body: +- type: markdown + attributes: + value: | + 🛑 READ THE FOLLOWING BEFORE YOU CONTINUE! 🛑 + All bug reports *must* follow the issue template below. + + If it is a help request, you might want to try the [Discord community](https://discord.gg/7Dr9f9vNjJ) first. + + Make the following items are true before filing a bug: + + - You are using the latest version of the app. + - You tried and can replicate the bug. + - You have followed the [configuration steps](https://memories.gallery/config/). + - You have looked at the [troubleshooting](https://memories.gallery/troubleshooting/) documentation. + - You have searched the [open issues](https://github.com/pulsejet/memories/issues) +- type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + validations: + required: true +- type: textarea + attributes: + label: Steps To Reproduce + description: Steps to reproduce the behavior. + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: false +- type: textarea + attributes: + label: Platform + description: | + Example: + - OS: iOS + - Browser: Chrome, Safari + - Memories Version: 4.1.0 + - Nextcloud Version: 25.0.6 + - PHP Version: 8.1 + value: | + - OS: + - Browser: + - Memories Version: + - Nextcloud Version: + - PHP Version: + render: markdown + validations: + required: false +- type: textarea + attributes: + label: Screenshots + description: | + If applicable, add screenshots to help explain your problem. + validations: + required: false +- type: textarea + attributes: + label: Additional context + description: | + Add any other context about the problem here. + value: | + - Any errors in the JS console? + - Any errors in the Nextcloud server logs? + validations: + required: false \ No newline at end of file