Skip to content

Commit

Permalink
Create bug_report.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Black-Thunder authored Sep 5, 2024
1 parent 754a6f9 commit 6228900
Showing 1 changed file with 125 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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: "<adapter-version>"
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: "<js-controller-version>"
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: "<node-version>"
validations:
required: true

- type: input
id: os_name
attributes:
label: "Operating System"
description: "Name of the operating system"
placeholder: "<os-name>"
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..."

0 comments on commit 6228900

Please sign in to comment.