From 9001be700159a04da4adf571450540174d4e71d0 Mon Sep 17 00:00:00 2001 From: Safouen Turki Date: Thu, 9 May 2024 13:18:44 +0100 Subject: [PATCH 1/2] Update issue template --- .github/ ISSUE_TEMPLATE /BUG-REPORT.yml | 80 +++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 .github/ ISSUE_TEMPLATE /BUG-REPORT.yml diff --git a/.github/ ISSUE_TEMPLATE /BUG-REPORT.yml b/.github/ ISSUE_TEMPLATE /BUG-REPORT.yml new file mode 100644 index 0000000..cc4709c --- /dev/null +++ b/.github/ ISSUE_TEMPLATE /BUG-REPORT.yml @@ -0,0 +1,80 @@ +name: "🐛 Bug Report" +description: Create a new ticket for a bug. +title: "🐛 [BUG] - " +labels: [ + "bug" +] +body: + - type: textarea + id: description + attributes: + label: "Description" + description: Please enter an explicit description of your issue + placeholder: Short and explicit description of your incident... + validations: + required: true + - type: input + id: reprod-url + attributes: + label: "Reproduction URL" + description: Please enter your GitHub URL to provide a reproduction of the issue + placeholder: ex. https://github.com/USERNAME/REPO-NAME + validations: + required: true + - type: textarea + id: reprod + attributes: + label: "Reproduction steps" + description: Please enter an explicit description of your issue + value: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + render: bash + validations: + required: true + - type: textarea + id: screenshot + attributes: + label: "Screenshots" + description: If applicable, add screenshots to help explain your problem. + value: | + ![DESCRIPTION](LINK.png) + render: bash + validations: + required: false + - type: textarea + id: logs + attributes: + label: "Logs" + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: bash + validations: + required: false + - type: dropdown + id: browsers + attributes: + label: "Browsers" + description: What browsers are you seeing the problem on ? + multiple: true + options: + - Firefox + - Chrome + - Safari + - Microsoft Edge + - Opera + validations: + required: false + - type: dropdown + id: os + attributes: + label: "OS" + description: What is the impacted environment ? + multiple: true + options: + - Windows + - Linux + - Mac + validations: + required: false From 1229126e77621e74a4bb89e9beacacde3998b520 Mon Sep 17 00:00:00 2001 From: Safouen Turki <tsafouen@gmail.com> Date: Thu, 9 May 2024 13:41:37 +0100 Subject: [PATCH 2/2] Delete .github/ ISSUE_TEMPLATE directory --- .github/ ISSUE_TEMPLATE /BUG-REPORT.yml | 80 --------------------- 1 file changed, 80 deletions(-) delete mode 100644 .github/ ISSUE_TEMPLATE /BUG-REPORT.yml diff --git a/.github/ ISSUE_TEMPLATE /BUG-REPORT.yml b/.github/ ISSUE_TEMPLATE /BUG-REPORT.yml deleted file mode 100644 index cc4709c..0000000 --- a/.github/ ISSUE_TEMPLATE /BUG-REPORT.yml +++ /dev/null @@ -1,80 +0,0 @@ -name: "🐛 Bug Report" -description: Create a new ticket for a bug. -title: "🐛 [BUG] - <title>" -labels: [ - "bug" -] -body: - - type: textarea - id: description - attributes: - label: "Description" - description: Please enter an explicit description of your issue - placeholder: Short and explicit description of your incident... - validations: - required: true - - type: input - id: reprod-url - attributes: - label: "Reproduction URL" - description: Please enter your GitHub URL to provide a reproduction of the issue - placeholder: ex. https://github.com/USERNAME/REPO-NAME - validations: - required: true - - type: textarea - id: reprod - attributes: - label: "Reproduction steps" - description: Please enter an explicit description of your issue - value: | - 1. Go to '...' - 2. Click on '....' - 3. Scroll down to '....' - 4. See error - render: bash - validations: - required: true - - type: textarea - id: screenshot - attributes: - label: "Screenshots" - description: If applicable, add screenshots to help explain your problem. - value: | - ![DESCRIPTION](LINK.png) - render: bash - validations: - required: false - - type: textarea - id: logs - attributes: - label: "Logs" - description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. - render: bash - validations: - required: false - - type: dropdown - id: browsers - attributes: - label: "Browsers" - description: What browsers are you seeing the problem on ? - multiple: true - options: - - Firefox - - Chrome - - Safari - - Microsoft Edge - - Opera - validations: - required: false - - type: dropdown - id: os - attributes: - label: "OS" - description: What is the impacted environment ? - multiple: true - options: - - Windows - - Linux - - Mac - validations: - required: false