From 1633cddf55c0efbb60c825072cc8509afffbc065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Gj=C3=B8by=20Thom?= <34199185+havardthom@users.noreply.github.com> Date: Wed, 13 Nov 2024 01:32:27 +0100 Subject: [PATCH] Add website issue template (#200) --- .../{bug_report.yaml => script-issue.yaml} | 2 +- .github/ISSUE_TEMPLATE/website-issue.yaml | 45 +++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) rename .github/ISSUE_TEMPLATE/{bug_report.yaml => script-issue.yaml} (98%) create mode 100644 .github/ISSUE_TEMPLATE/website-issue.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/script-issue.yaml similarity index 98% rename from .github/ISSUE_TEMPLATE/bug_report.yaml rename to .github/ISSUE_TEMPLATE/script-issue.yaml index bed104331..b8e83878b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/script-issue.yaml @@ -1,4 +1,4 @@ -name: Problems with a script. +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. body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/website-issue.yaml b/.github/ISSUE_TEMPLATE/website-issue.yaml new file mode 100644 index 000000000..abfa19f44 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/website-issue.yaml @@ -0,0 +1,45 @@ +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 + +