From 2f1d64f9c6c48c971e120658d56afe942b608c0e Mon Sep 17 00:00:00 2001 From: jalcaras Date: Thu, 11 Jan 2024 16:16:47 +0100 Subject: [PATCH 1/4] feat: add bugreport template for github* --- .github/ISSUE_TEMPLATE/BUG-REPORT.yaml | 85 ++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/BUG-REPORT.yaml diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yaml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yaml new file mode 100644 index 0000000..4e52751 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yaml @@ -0,0 +1,85 @@ +name: "🐛 Bug Report" +description: Create a new ticket for a bug. +title: "🐛 [BUG] - " +labels: [ + "bug" +] +body: + - type: dropdown + id: browsers + attributes: + label: "Hardware" + description: | + > What type of hardware is ESPSomfy RTS installed on? + > Information available at System > Firmware > Hardware : XXX + multiple: true + options: + - ESP32 + - ESP32-S3 + - ESP32-S2 + - ESP32-C3 + - ESP32 WT32-ETH01 + - Olimex ESP32-PoE/EVB + - LilyGO T-Internet POE + - wESP POE + - Other + validations: + required: true + + - type: input + validations: + required: true + attributes: + label: Firmware version + placeholder: v2.3.0 + description: | + > Information available at System > Firmware > Firmware : v X.x.x + + - type: input + validations: + required: true + attributes: + label: Application version + placeholder: v2.3.0 + description: | + > Information available at System > Firmware > Application : v X.x.x + + - 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: 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 \ No newline at end of file From 02808412a28198c85928f199f3f9110af2541e89 Mon Sep 17 00:00:00 2001 From: jalcaras <jalcaras@free-mobile.fr> Date: Mon, 15 Jan 2024 15:20:04 +0100 Subject: [PATCH 2/4] Bug report form --- .github/ISSUE_TEMPLATE/BUG-REPORT.yaml | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yaml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yaml index 4e52751..7a7231d 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yaml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yaml @@ -1,6 +1,5 @@ name: "🐛 Bug Report" description: Create a new ticket for a bug. -title: "🐛 [BUG] - <title>" labels: [ "bug" ] @@ -47,7 +46,7 @@ body: - type: textarea id: description attributes: - label: "Description" + label: "What happened? What did you expect to happen?" description: Please enter an explicit description of your issue placeholder: Short and explicit description of your incident... validations: @@ -55,26 +54,15 @@ body: - type: textarea id: reprod attributes: - label: "Reproduction steps" + label: "How to reproduce it (setp by step)" description: Please enter an explicit description of your issue value: | - 1. Go to '...' - 2. Click on '....' - 3. Scroll down to '....' - 4. See error + 1. Go to... + 2. Click on... + ... 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: From e48da7c03d841ab993b1f8b0813507a6f726bc4c Mon Sep 17 00:00:00 2001 From: jalcaras <jalcaras@free-mobile.fr> Date: Mon, 15 Jan 2024 15:27:01 +0100 Subject: [PATCH 3/4] New feature form --- .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yaml diff --git a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yaml b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yaml new file mode 100644 index 0000000..f604b97 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yaml @@ -0,0 +1,14 @@ +name: "🐛 Feature request" +description: Create a new feature request. +labels: [ + "feature request" +] +body: + + - type: textarea + id: description + attributes: + label: "Describe you new feature you'd like" + description: Please enter an explicit description of your new feature + validations: + required: true \ No newline at end of file From b7afdb11fb9362287b7c4ee5a41dbb9747004fe6 Mon Sep 17 00:00:00 2001 From: jalcaras <jalcaras@free-mobile.fr> Date: Mon, 15 Jan 2024 15:28:18 +0100 Subject: [PATCH 4/4] New feature form --- .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yaml b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yaml index f604b97..14ae638 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yaml +++ b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yaml @@ -1,4 +1,4 @@ -name: "🐛 Feature request" +name: "🆕 Feature request" description: Create a new feature request. labels: [ "feature request"