From aa4a2bdf24fea87a7c16e181efd264561231ecc8 Mon Sep 17 00:00:00 2001 From: Malachi van der Merwe Date: Thu, 14 Mar 2024 15:12:36 +0200 Subject: [PATCH] Adds a issue template for the reporting of bugs in the joomla-component. --- .../a-bug-4-joomla-component.yml | 133 ++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 .gitea/ISSUE_TEMPLATE/a-bug-4-joomla-component.yml diff --git a/.gitea/ISSUE_TEMPLATE/a-bug-4-joomla-component.yml b/.gitea/ISSUE_TEMPLATE/a-bug-4-joomla-component.yml new file mode 100644 index 0000000..d93c6b5 --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/a-bug-4-joomla-component.yml @@ -0,0 +1,133 @@ +name: Bug Report for the Joomla-Component +about: Draft a report to aid in our Debugging efforts. +title: "[BUG]: " +labels: + - bug +body: + - type: markdown + attributes: + value: | + We value your effort in reporting an bug! Your feedback is essential for us to address and fix the problem. + - type: textarea + id: what-happened + attributes: + label: What Happened? + description: Please provide a detailed description of the issue and explain what outcome you anticipate. + placeholder: Describe the issue you experienced. + value: "" + validations: + required: true + - type: textarea + id: steps_to_reproduce + attributes: + label: Steps to reproduce the Bug + description: Please provide a detailed description of the steps to reproduce the issue you experienced. + placeholder: Describe the steps to reproduce the issue. + value: "" + validations: + required: true + - type: markdown + attributes: + value: | + # Environment Details + - type: dropdown + id: joomla_version + attributes: + label: Which Joomla version are you using? + multiple: true + options: + - Joomla 5 + - Joomla 4 + - Joomla 3 + validations: + required: true + - type: dropdown + id: joomla-component_version + attributes: + label: Which GetBible/joomla-component version is this issue related to? + multiple: true + options: + - v5.x + - v4.x + - v3.x + - Other + validations: + required: true + - type: dropdown + id: php_version + attributes: + label: Which PHP version are you using? + multiple: true + options: + - PHP 8.3 + - PHP 8.2 + - PHP 8.1 + - PHP 8.0 + - PHP 7.4 + - Other + validations: + required: true + - type: dropdown + id: apache_version + attributes: + label: Which Apache version are you using? + multiple: true + options: + - Apache 2.4 + - Apache 2.2 + - Apache 2.0 + - Other + validations: + required: true + - type: dropdown + id: area + attributes: + label: Where did this issue occur? + multiple: true + options: + - Linkers(admin_views) + - Notes(admin_views) + - Tagged Verses(admin_views) + - Prompts(admin_views) + - Open AI Responses(admin_views) + - Tags(admin_views) + - Translations(admin_views) + - Books(admin_views) + - Chapters(admin_views) + - Verses(admin_views) + - App(site_vew) + - Other + validations: + required: true + - type: dropdown + id: browsers + attributes: + label: On which browsers did you encounter the issue? + multiple: true + options: + - Firefox + - Chrome + - Microsoft Edge + - Safari + - Opera + - Brave + - Vivaldi + validations: + required: true + - type: dropdown + id: os + attributes: + label: What operating system are you currently using? + multiple: true + options: + - Linux + - Windows + - macOS + - Other + validations: + required: true + - type: textarea + id: comments + attributes: + label: Additional Comments + description: Feel free to include any further comments or pertinent details that might assist us. \ No newline at end of file