From 9d254aaca2a9a05ae2f8451fd61b77b8a7624dbf Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 15 May 2024 23:59:15 +0200 Subject: [PATCH] Create bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 64 +++++++++++++++++++++++++++ 1 file changed, 64 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..bf7d806 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,64 @@ +name: "\U0001F41E Bug Report" +description: Create a report to help us improve the container +title: "[Bug]: " +labels: ["bug"] +body: + - type: checkboxes + attributes: + label: Is there an existing bug report for this? + description: Please search to see if a report already exists for the bug you encountered. + options: + - label: I have searched the existing bug reports + required: true + - type: input + id: cpu + attributes: + label: Machine specifications + description: The processor and RAM amount in your machine. + placeholder: e.g. Raspberry Pi 5 / 8 GB + validations: + required: true + - type: input + id: os + attributes: + label: Operating system + description: The distribution and kernel version (as shown by `uname -a`). + placeholder: e.g. Ubuntu 24.04 / Kernel 6.8.0-22-generic + validations: + required: true + - type: input + id: docker + attributes: + label: Docker version + description: The version of the Docker engine (as shown by `docker -v`). + placeholder: e.g. 26.0.1 + validations: + required: true + - type: textarea + id: summary + attributes: + label: Description + description: A clear and concise description of your issue. + validations: + required: true + - type: textarea + id: compose + attributes: + label: Docker compose + description: The compose file (or otherwise the `docker run` command used). + validations: + required: true + - type: textarea + id: log + attributes: + label: Docker log + description: The logfile of the container (as shown by `docker logs qemu`). + validations: + required: true + - type: textarea + id: screenshot + attributes: + label: Screenshots (optional) + description: Screenshots that might help to make the problem more clear. + validations: + required: false