From ef721b526be8a5ebab8f22c9922cbaec4b370c64 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 17 Apr 2024 17:52:22 +0200 Subject: [PATCH] Update issue template --- .github/ISSUE_TEMPLATE/BUG_REPORT.yml | 47 +++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_report.md | 38 ---------------------- 2 files changed, 47 insertions(+), 38 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.yml delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml new file mode 100644 index 0000000..ce69f17 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -0,0 +1,47 @@ +name: "\U0001F41E Bug Report" +description: Create a report to help us improve the container +title: "[Bug]: " +labels: ["bug"] +body: + - type: input + id: os + attributes: + label: OS version + description: The Linux distribution and kernel version as shown by `uname -a` + validations: + required: true + - type: input + id: docker + attributes: + label: Docker version + description: The Docker version as shown by `docker -v` + validations: + required: true + - type: textarea + id: summary + attributes: + label: Summary + description: A clear and concise description of what the problem is. + validations: + required: true + - type: textarea + id: log + attributes: + label: Docker Compose file + description: The Docker Compose file (or otherwise `run` command) of the container + validations: + required: true + - type: textarea + id: log + attributes: + label: Docker log + description: The Docker logfile of the container + validations: + required: true + - type: textarea + id: screenshot + attributes: + label: Screenshots + description: Screenshot of the problem + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index dd84ea7..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Desktop (please complete the following information):** - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Smartphone (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Browser [e.g. stock browser, safari] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here.