From 62289007718ca1c80264a31cd4a08d9ee17e032e Mon Sep 17 00:00:00 2001 From: Black-Thunder <972581+Black-Thunder@users.noreply.github.com> Date: Thu, 5 Sep 2024 21:11:25 +0200 Subject: [PATCH] Create bug_report.yaml --- .../.github/ISSUE_TEMPLATE/bug_report.yaml | 125 ++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/.github/ISSUE_TEMPLATE/.github/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.github/ISSUE_TEMPLATE/.github/ISSUE_TEMPLATE/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/.github/ISSUE_TEMPLATE/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 00000000..055af4bc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/.github/ISSUE_TEMPLATE/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,125 @@ +name: Bug report +description: Report a bug and upload your debug log file +title: "[BUG] " +labels: bug + +body: + - type: markdown + attributes: + value: | + ## Describe the bug + A clear and concise description of what the bug is. + + - type: textarea + id: bug_description + attributes: + label: "Bug Description" + description: "A clear and concise description of what the bug is." + placeholder: "Describe the bug..." + validations: + required: true + + - type: markdown + attributes: + value: | + ## To Reproduce + Steps to reproduce the behavior: + 1. Go to '...' + 2. Click on '...' + 3. Scroll down to '....' + 4. See error + + - type: textarea + id: steps_to_reproduce + attributes: + label: "Steps to Reproduce" + description: "Describe the steps to reproduce the bug." + placeholder: "List the steps here..." + validations: + required: true + + - type: markdown + attributes: + value: | + ## Expected behavior + A clear and concise description of what you expected to happen. + + - type: textarea + id: expected_behavior + attributes: + label: "Expected Behavior" + description: "What did you expect to happen?" + placeholder: "Describe the expected behavior..." + validations: + required: true + + - type: markdown + attributes: + value: | + ## Screenshots & Logfiles (Required) + To help us understand and fix the issue, please upload relevant screenshots and the debug log. You can paste the log content below or manually attach the file by clicking on "Attach files by dragging & dropping, selecting or pasting them." + + - type: textarea + id: debug_log + attributes: + label: "Debug Log" + description: "Paste your debug log here or attach the file manually using the GitHub interface." + placeholder: "Paste the debug log content here or leave this field empty if attaching the file." + validations: + required: true + + - type: markdown + attributes: + value: | + ## Versions + Please provide the following version information. + + - type: input + id: adapter_version + attributes: + label: "Adapter Version" + description: "Version of the adapter" + placeholder: "" + validations: + required: true + + - type: input + id: js_controller_version + attributes: + label: "JS-Controller Version" + description: "Version of the JS-Controller (use `iobroker -v` to determine this)" + placeholder: "" + validations: + required: true + + - type: input + id: node_version + attributes: + label: "Node.js Version" + description: "Version of Node.js (use `node -v` to determine this)" + placeholder: "" + validations: + required: true + + - type: input + id: os_name + attributes: + label: "Operating System" + description: "Name of the operating system" + placeholder: "" + validations: + required: true + + - type: markdown + attributes: + value: | + ## Additional context + Add any other context about the problem here. + + - type: textarea + id: additional_context + attributes: + label: "Additional Context" + description: "Any other details that might help us understand the issue." + placeholder: "Add any additional context here..." +