From 5d91bbd07fa0f19c1f27f2dc04f029451a299c2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathilde=20Gr=C3=BCnig?= Date: Fri, 12 May 2023 13:45:25 +0200 Subject: [PATCH] readd Yaml file instead of Md --- .github/ISSUE_TEMPLATE/bug_resolution.md | 36 -------- .github/ISSUE_TEMPLATE/bug_resolution.yml | 108 ++++++++++++++++++++++ 2 files changed, 108 insertions(+), 36 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_resolution.md create mode 100644 .github/ISSUE_TEMPLATE/bug_resolution.yml diff --git a/.github/ISSUE_TEMPLATE/bug_resolution.md b/.github/ISSUE_TEMPLATE/bug_resolution.md deleted file mode 100644 index 930a6a90e..000000000 --- a/.github/ISSUE_TEMPLATE/bug_resolution.md +++ /dev/null @@ -1,36 +0,0 @@ -# Contribution guidelines - -Please read the [code of conduct](https://github.com/xwiki-labs/cryptpad/blob/main/CODE_OF_CONDUCT.md) before proceeding. - -You've found a bug and checked that: - -- You understand that not following the below instructions will result in immediate closure and/or deletion of your issue. -- You have understood that this bug report is dedicated for bugs, and not for support-related inquiries. -- You have understood that answers are voluntary and community-driven, and not commercial support. -- You have verified that your issue has not been already answered in the past. You've read the [Common issues documentation section](https://docs.cryptpad.org/en/FAQ.html#common-issues) and you also checked [previous issues](https://github.com/xwiki-labs/cryptpad/issues). - -# Description - -Please provide a brief description of the bug in 1-2 sentences. If applicable, add screenshots to help explain your problem. Very useful for bugs in CryptPad UI. - -# Steps to reproduce - -Please describe the steps to reproduce the bug. Screenshots can be added, if helpful. - -1. -2. -3. - -# Expected behavior - -A clear and concise description of what you expected to happen. - -# System information - -| Question | Answer | -| --- | --- | -| Operating system and version | I_DO_REPLY_HERE | -| Web browser and version| I_DO_REPLY_HERE | -| Extensions installed | I_DO_REPLY_HERE | -| Browser tweaks | I_DO_REPLY_HERE | -| CryptPad version | I_DO_REPLY_HERE | \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_resolution.yml b/.github/ISSUE_TEMPLATE/bug_resolution.yml new file mode 100644 index 000000000..c6b47eef4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_resolution.yml @@ -0,0 +1,108 @@ +name: Bug report +description: Report a bug, otherwise see the links below +labels: ["bug"] +body: + - type: checkboxes + attributes: + label: Contribution guidelines + description: Please read the code of conduct before proceeding. + options: + - label: I've read the [code of conduct](https://github.com/xwiki-labs/cryptpad/blob/main/CODE_OF_CONDUCT.md) and wholeheartedly agree + required: true + - type: checkboxes + id: terms + attributes: + label: I've found a bug and checked that ... + description: Prior to placing the issue, please check following:** *(fill out each checkbox with an `X` once done)* + options: + - label: I understand that not following the below instructions will result in immediate closure and/or deletion of my issue. + required: true + - label: I have understood that this bug report is dedicated for bugs, and not for support-related inquiries. + required: true + - label: I have understood that answers are voluntary and community-driven, and not commercial support. + required: true + - label: I have verified that my issue has not been already answered in the past. I've read the [Common issues documentation section](https://docs.cryptpad.org/en/FAQ.html#common-issues) and I also checked [previous issues](https://github.com/xwiki-labs/cryptpad/issues). + required: true + - type: textarea + id: description + attributes: + label: Description + description: Please provide a brief description of the bug in 1-2 sentences. If applicable, add screenshots to help explain your problem. Very useful for bugs in CryptPad UI. + validations: + required: true + - type: textarea + id: reproduce + attributes: + label: Steps to reproduce + description: Please describe the steps to reproduce the bug. Screenshots can be added, if helpful. + placeholder: |- + 1. ... + 2. ... + 3. ... + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant logs + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + validations: + required: true + - type: dropdown + id: operating-system + attributes: + label: What opreating system are you using? + multiple: true + options: + - Linux/BSD/UNIX + - Microsoft Windows + - Apple macOS + - Apple iOS + - Google ChromeOS + - Google Android + - Other + - type: dropdown + id: browsers + attributes: + label: What browsers are you seeing the problem on? + multiple: true + options: + - Mozilla Firefox + - Google Chrome + - Apple Safari + - Microsoft Edge + - Other + - type: textarea + id: extensions + attributes: + label: Extensions + description: Web browser extensions installed + validations: + required: true + - type: dropdown + id: version + attributes: + label: Version + description: What version of CryptPad are you running? + options: + - 5.3.0 + - 5.2.1 + - 5.2.0 + - 5.1.0 + - 5.0.0 + - 4.14.1 + - 4.14.0 + - 4.13.0 + - 4.12.1 + - 4.12.0 + - 4.11.0 + - 4.10.0 + - Other + validations: + required: true