From 4f5f383af950318d8e51a3bed01c586faa20b990 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Wed, 13 Nov 2024 16:52:26 +0100 Subject: [PATCH 01/14] Add new Frontend_Report / Issue_Report & optimize config.yml --- .../{script-issue.yaml => bug_report.yml} | 36 +++++---- .github/ISSUE_TEMPLATE/config.yml | 15 +++- .github/ISSUE_TEMPLATE/frontend_report.yml | 75 +++++++++++++++++++ .github/ISSUE_TEMPLATE/website-issue.yaml | 45 ----------- 4 files changed, 109 insertions(+), 62 deletions(-) rename .github/ISSUE_TEMPLATE/{script-issue.yaml => bug_report.yml} (71%) create mode 100644 .github/ISSUE_TEMPLATE/frontend_report.yml delete mode 100644 .github/ISSUE_TEMPLATE/website-issue.yaml diff --git a/.github/ISSUE_TEMPLATE/script-issue.yaml b/.github/ISSUE_TEMPLATE/bug_report.yml similarity index 71% rename from .github/ISSUE_TEMPLATE/script-issue.yaml rename to .github/ISSUE_TEMPLATE/bug_report.yml index b8e83878bb7..e0aff097cf6 100644 --- a/.github/ISSUE_TEMPLATE/script-issue.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,5 +1,8 @@ -name: Problems with a script -description: Generate a report on an issue pertaining specifically to a script. For other inquires please share them in the Discussions section. +name: "🐞 Script Issue Report" +description: Report a specific issue with a script. For general inquiries, please use the Discussions section. +title: "[Issue]: " +labels: "Status: Unconfirmed" + body: - type: markdown attributes: @@ -8,37 +11,38 @@ body: - Prior to submitting, kindly search the closed issues to check if the problem you are reporting has already been addressed and resolved. If you come across a closed issue that pertains to your problem, please leave a comment on that issue instead of creating a new one. - If the default Linux distribution is not adhered to, script support will be discontinued. - When encountering the error message `[ERROR] in line 23: exit code *: while executing command "$@" > /dev/null 2>&1`, make sure to run the script in verbose mode to accurately determine the underlying issue. - - For suggestions, questions or feature/script requests, please share them in the [Discussions section.](https://github.com/community-scripts/ProxmoxVE/discussions) + - For suggestions, questions, or feature/script requests, please use the [Discussions section.](https://github.com/community-scripts/ProxmoxVE/discussions) + - type: input id: guidelines attributes: label: Please verify that you have read and understood the guidelines. - placeholder: 'yes' + placeholder: "yes" validations: required: true + - type: textarea id: bug attributes: label: A clear and concise description of the issue. validations: required: true - - type: dropdown - id: settings + + - type: checkboxes validations: required: true attributes: label: What settings are you currently utilizing? options: - - - - Default Settings - - Advanced Settings + - label: Default Settings + - label: Advanced Settings + - type: markdown attributes: - value: (if Advanced Settings, please try Default Settings before creating an issue) + value: "If using Advanced Settings, please try Default Settings before creating an issue." + - type: dropdown id: distribution - validations: - required: true attributes: label: Which Linux distribution are you employing? options: @@ -49,17 +53,21 @@ body: - Ubuntu 20.04 - Ubuntu 22.04 - Ubuntu 24.04 + validations: + required: true + - type: textarea id: screenshot attributes: label: If relevant, including screenshots or a code block can be helpful in clarifying the issue. - placeholder: Code blocks begin and conclude by enclosing the code with three backticks (```) above and below it. + placeholder: "Code blocks begin and conclude by enclosing the code with three backticks (```) above and below it." validations: required: false + - type: textarea id: reproduce attributes: label: Please provide detailed steps to reproduce the issue. - placeholder: First do this, then this ... + placeholder: "First do this, then this ..." validations: required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 5adde47d508..9080941c635 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,14 @@ blank_issues_enabled: false contact_links: - - name: Helper-Scripts Community Support - url: https://github.com/community-scripts/ProxmoxVE/discussions - about: Please ask and answer questions here. + - name: 📃 Documentation Issue + url: https://github.com/community-scripts/ProxmoxVE/issues/new?assignees=&labels=Status%3A+Unconfirmed&projects=&template=frontend_report.yml&title=%5BFrontend%5D%3A+ + about: This issue tracker is not for documentation issues. Please file documentation issues here. + - name: 🤔 Questions and Help + url: https://github.com/community-scripts/ProxmoxVE/discussions + about: This issue tracker is not for support questions. Please refer to the community's help. + - name: 🌟 Feature request + url: https://github.com/community-scripts/ProxmoxVE/discussions/new?category=request-script + about: Please use our GitHub Discussion for making feature requests. + - name: 💻 Discord + url: https://discord.gg/UHrpNWGwkH + about: Feel free to join our Discord for Talking, Homelab and so on. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/frontend_report.yml b/.github/ISSUE_TEMPLATE/frontend_report.yml new file mode 100644 index 00000000000..162b52047fd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/frontend_report.yml @@ -0,0 +1,75 @@ +name: "🌐 Frontend (Issue / Optimization / Documentation)" +description: Report an issue specifically related to the website frontend. For other inquiries, please use the Discussions section. +title: "[Frontend]: " +labels: "Status: Unconfirmed" + +body: + - type: markdown + attributes: + value: | + **IMPORTANT:** Failure to comply with the following guidelines may result in immediate closure. + - Prior to submitting, kindly search the closed issues to check if the problem you are reporting has already been addressed and resolved. If you come across a closed issue that pertains to your problem, please leave a comment on that issue instead of creating a new one. + - If the problem is related to a bug in the website frontend, kindly check for browser compatibility and ensure the issue occurs in multiple browsers before submitting. + - For suggestions, questions, or feature requests, please use the [Discussions section.](https://github.com/community-scripts/ProxmoxVE/discussions) + + - type: input + id: guidelines + attributes: + label: Please verify that you have read and understood the guidelines. + placeholder: 'yes' + validations: + required: true + + - type: dropdown + id: issue_type + validations: + required: true + attributes: + label: What type of issue is this? + options: + - + - Bug + - Optimization + - Documentation + + - type: textarea + id: bug_description + attributes: + label: A clear and concise description of the issue. + validations: + required: true + + - type: dropdown + id: browser + validations: + required: true + attributes: + label: Which browser are you using? + options: + - + - Chrome + - Firefox + - Safari + - Edge + - Other + + - type: markdown + attributes: + value: | + **If the issue is browser-related**, please provide information on the version and platform (Windows, MacOS, Linux, etc.). + + - type: textarea + id: screenshot + attributes: + label: If relevant, including screenshots or a code block can be helpful in clarifying the issue. + placeholder: "Code blocks begin and conclude by enclosing the code with three backticks (```) above and below it." + validations: + required: false + + - type: textarea + id: reproduce + attributes: + label: Please provide detailed steps to reproduce the issue. + placeholder: "First do this, then this ..." + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/website-issue.yaml b/.github/ISSUE_TEMPLATE/website-issue.yaml deleted file mode 100644 index abfa19f4465..00000000000 --- a/.github/ISSUE_TEMPLATE/website-issue.yaml +++ /dev/null @@ -1,45 +0,0 @@ -name: Problems with the website -description: Generate a report on an issue pertaining specifically to the website (https://community-scripts.github.io/ProxmoxVE/). For other inquires please share them in the Discussions section. -labels: ["website"] -body: - - type: markdown - attributes: - value: | - **IMPORTANT:** Failure to comply with the following guidelines may result in immediate closure. - - Prior to submitting, kindly search the closed issues to check if the problem you are reporting has already been addressed and resolved. If you come across a closed issue that pertains to your problem, please leave a comment on that issue instead of creating a new one. - - For suggestions, questions or feature/script requests, please share them in the [Discussions section.](https://github.com/community-scripts/ProxmoxVE/discussions) - - type: input - id: guidelines - attributes: - label: Please verify that you have read and understood the guidelines. - placeholder: 'yes' - validations: - required: true - - type: textarea - id: bug - attributes: - label: A clear and concise description of the issue. - validations: - required: true - - type: textarea - id: expected-behavior - attributes: - label: Please provide a description of the expected behavior. - validations: - required: true - - type: textarea - id: screenshot - attributes: - label: If relevant, including screenshots or a code block can be helpful in clarifying the issue. - placeholder: Code blocks begin and conclude by enclosing the code with three backticks (```) above and below it. - validations: - required: false - - type: textarea - id: reproduce - attributes: - label: Please provide detailed steps to reproduce the issue. - placeholder: First do this, then this ... - validations: - required: false - - From 3d7c8b60c23e9c722671ec6eb22fe302cd2e169a Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:10:02 +0100 Subject: [PATCH 02/14] Update .github/ISSUE_TEMPLATE/bug_report.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit switch general to other Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index e0aff097cf6..ab0d8152d58 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,5 +1,5 @@ name: "🐞 Script Issue Report" -description: Report a specific issue with a script. For general inquiries, please use the Discussions section. +description: Report a specific issue with a script. For other inquiries, please use the Discussions section. title: "[Issue]: " labels: "Status: Unconfirmed" From 082fe480b8411ed845d6f5bf8433cbcbb0ddfcbf Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:10:20 +0100 Subject: [PATCH 03/14] Update .github/ISSUE_TEMPLATE/bug_report.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit remove title Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index ab0d8152d58..87b15ce267f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,5 @@ name: "🐞 Script Issue Report" description: Report a specific issue with a script. For other inquiries, please use the Discussions section. -title: "[Issue]: " labels: "Status: Unconfirmed" body: From 87aceb837bca58c4fea80a49166faf866d0f777c Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:10:33 +0100 Subject: [PATCH 04/14] Update .github/ISSUE_TEMPLATE/bug_report.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit remove label Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 87b15ce267f..54a11f33a39 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,5 @@ name: "🐞 Script Issue Report" description: Report a specific issue with a script. For other inquiries, please use the Discussions section. -labels: "Status: Unconfirmed" body: - type: markdown From 394d09f3eb3c13906b485e15af6219e8af632eeb Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:11:43 +0100 Subject: [PATCH 05/14] Update .github/ISSUE_TEMPLATE/config.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit update text for questions and help Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 9080941c635..104b2b54b7c 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -5,7 +5,7 @@ contact_links: about: This issue tracker is not for documentation issues. Please file documentation issues here. - name: 🤔 Questions and Help url: https://github.com/community-scripts/ProxmoxVE/discussions - about: This issue tracker is not for support questions. Please refer to the community's help. + about: For suggestions or questions, please use the Discussions section. - name: 🌟 Feature request url: https://github.com/community-scripts/ProxmoxVE/discussions/new?category=request-script about: Please use our GitHub Discussion for making feature requests. From 7ff162683ed031c9dba086be94ebddf16db44ee6 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:11:59 +0100 Subject: [PATCH 06/14] Update .github/ISSUE_TEMPLATE/config.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit harmonize with readme (discord) Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 104b2b54b7c..87c78954afb 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -11,4 +11,4 @@ contact_links: about: Please use our GitHub Discussion for making feature requests. - name: 💻 Discord url: https://discord.gg/UHrpNWGwkH - about: Feel free to join our Discord for Talking, Homelab and so on. \ No newline at end of file + about: Join our Discord server to chat with other users in the Proxmox Helper Scripts community. \ No newline at end of file From 363f6fb08b79aad238704bacea9fda7046bcac9b Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:12:16 +0100 Subject: [PATCH 07/14] Update .github/ISSUE_TEMPLATE/frontend_report.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit harmonize title for Frontend Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/frontend_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/frontend_report.yml b/.github/ISSUE_TEMPLATE/frontend_report.yml index 162b52047fd..95228228a5b 100644 --- a/.github/ISSUE_TEMPLATE/frontend_report.yml +++ b/.github/ISSUE_TEMPLATE/frontend_report.yml @@ -1,4 +1,4 @@ -name: "🌐 Frontend (Issue / Optimization / Documentation)" +name: "🌐 Frontend Issue Report" description: Report an issue specifically related to the website frontend. For other inquiries, please use the Discussions section. title: "[Frontend]: " labels: "Status: Unconfirmed" From 65a8fb7454d2c874f73b15241f85600d3c5c7650 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:13:35 +0100 Subject: [PATCH 08/14] remove documentation issue --- .github/ISSUE_TEMPLATE/config.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 87c78954afb..3eba164b056 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,8 +1,5 @@ blank_issues_enabled: false contact_links: - - name: 📃 Documentation Issue - url: https://github.com/community-scripts/ProxmoxVE/issues/new?assignees=&labels=Status%3A+Unconfirmed&projects=&template=frontend_report.yml&title=%5BFrontend%5D%3A+ - about: This issue tracker is not for documentation issues. Please file documentation issues here. - name: 🤔 Questions and Help url: https://github.com/community-scripts/ProxmoxVE/discussions about: For suggestions or questions, please use the Discussions section. @@ -11,4 +8,4 @@ contact_links: about: Please use our GitHub Discussion for making feature requests. - name: 💻 Discord url: https://discord.gg/UHrpNWGwkH - about: Join our Discord server to chat with other users in the Proxmox Helper Scripts community. \ No newline at end of file + about: Join our Discord server to chat with other users in the Proxmox Helper Scripts community. From eef3ef72cdff2e165b7c3d4539a45552ace391c1 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:14:38 +0100 Subject: [PATCH 09/14] Update .github/ISSUE_TEMPLATE/config.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit harmonize text Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 3eba164b056..e9a13bc4dae 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -5,7 +5,7 @@ contact_links: about: For suggestions or questions, please use the Discussions section. - name: 🌟 Feature request url: https://github.com/community-scripts/ProxmoxVE/discussions/new?category=request-script - about: Please use our GitHub Discussion for making feature requests. + about: For feature/script requests, please use the Discussions section. - name: 💻 Discord url: https://discord.gg/UHrpNWGwkH about: Join our Discord server to chat with other users in the Proxmox Helper Scripts community. From 7375c5b8017bfd79b9fda57ede1f34df1a6aba4e Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:14:49 +0100 Subject: [PATCH 10/14] Update .github/ISSUE_TEMPLATE/frontend_report.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit update label Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/frontend_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/frontend_report.yml b/.github/ISSUE_TEMPLATE/frontend_report.yml index 95228228a5b..5bdcd85b8cf 100644 --- a/.github/ISSUE_TEMPLATE/frontend_report.yml +++ b/.github/ISSUE_TEMPLATE/frontend_report.yml @@ -1,7 +1,7 @@ name: "🌐 Frontend Issue Report" description: Report an issue specifically related to the website frontend. For other inquiries, please use the Discussions section. title: "[Frontend]: " -labels: "Status: Unconfirmed" +labels: "website" body: - type: markdown From 0d5c21c762470ec3ad76240d7d512406afd16cff Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:14:58 +0100 Subject: [PATCH 11/14] Update .github/ISSUE_TEMPLATE/frontend_report.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit remove title Co-authored-by: Håvard Gjøby Thom <34199185+havardthom@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/frontend_report.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/frontend_report.yml b/.github/ISSUE_TEMPLATE/frontend_report.yml index 5bdcd85b8cf..bb6a40d9c94 100644 --- a/.github/ISSUE_TEMPLATE/frontend_report.yml +++ b/.github/ISSUE_TEMPLATE/frontend_report.yml @@ -1,6 +1,5 @@ name: "🌐 Frontend Issue Report" description: Report an issue specifically related to the website frontend. For other inquiries, please use the Discussions section. -title: "[Frontend]: " labels: "website" body: From 870f6d8b65497ec9c8d0822e0e2073e89ed91699 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:22:15 +0100 Subject: [PATCH 12/14] Harmonize Frontend > Website --- .github/ISSUE_TEMPLATE/frontend_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/frontend_report.yml b/.github/ISSUE_TEMPLATE/frontend_report.yml index bb6a40d9c94..32d8d0af510 100644 --- a/.github/ISSUE_TEMPLATE/frontend_report.yml +++ b/.github/ISSUE_TEMPLATE/frontend_report.yml @@ -1,5 +1,5 @@ -name: "🌐 Frontend Issue Report" -description: Report an issue specifically related to the website frontend. For other inquiries, please use the Discussions section. +name: "🌐 Website Issue Report" +description: Report an issue, an optimization request or an documentation issue specifically related to the website frontend. labels: "website" body: From 6bfe5d00068da4eab4b0ecdb42d0d9b010604a71 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 19 Nov 2024 09:12:50 +0100 Subject: [PATCH 13/14] remove "frontend" word --- .github/ISSUE_TEMPLATE/frontend_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/frontend_report.yml b/.github/ISSUE_TEMPLATE/frontend_report.yml index 32d8d0af510..bbb13d4d47d 100644 --- a/.github/ISSUE_TEMPLATE/frontend_report.yml +++ b/.github/ISSUE_TEMPLATE/frontend_report.yml @@ -1,5 +1,5 @@ name: "🌐 Website Issue Report" -description: Report an issue, an optimization request or an documentation issue specifically related to the website frontend. +description: Report an issue, an optimization request or an documentation issue specifically related to the website. labels: "website" body: @@ -8,7 +8,7 @@ body: value: | **IMPORTANT:** Failure to comply with the following guidelines may result in immediate closure. - Prior to submitting, kindly search the closed issues to check if the problem you are reporting has already been addressed and resolved. If you come across a closed issue that pertains to your problem, please leave a comment on that issue instead of creating a new one. - - If the problem is related to a bug in the website frontend, kindly check for browser compatibility and ensure the issue occurs in multiple browsers before submitting. + - If the problem is related to a bug in the website, kindly check for browser compatibility and ensure the issue occurs in multiple browsers before submitting. - For suggestions, questions, or feature requests, please use the [Discussions section.](https://github.com/community-scripts/ProxmoxVE/discussions) - type: input From 6f4e90e90b8d6d60739db0b4a9371cdd72292a54 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 19 Nov 2024 09:13:20 +0100 Subject: [PATCH 14/14] Add "Other" to Frontend-Report --- .github/ISSUE_TEMPLATE/frontend_report.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/frontend_report.yml b/.github/ISSUE_TEMPLATE/frontend_report.yml index bbb13d4d47d..2a6f20af05b 100644 --- a/.github/ISSUE_TEMPLATE/frontend_report.yml +++ b/.github/ISSUE_TEMPLATE/frontend_report.yml @@ -30,6 +30,7 @@ body: - Bug - Optimization - Documentation + - Other - type: textarea id: bug_description