From 595e60182bac32455062e68a0c7ddaa8898c1b23 Mon Sep 17 00:00:00 2001 From: "Josh.5" Date: Mon, 10 Oct 2022 01:29:22 +1300 Subject: [PATCH] Another improvement to the bug report template --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index c6baa9a..99644c8 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -57,13 +57,19 @@ body: id: platform attributes: label: Platform - description: Detail the host OS platform, version and software versions. + description: | + Detail the host OS platform, version and software versions. + - Distribution: `$(. /etc/os-release; echo "${NAME} - ${VERSION}")` + - Linux Kernel: `$(uname -rpio)` + - GPU Driver versions: `$(nvidia-smi | grep 'Version:')` + - Docker: `$(docker -v)` + - Docker-compose: `$(docker compose -v)` placeholder: | - - Distribution: $(. /etc/os-release; echo "${NAME} - ${VERSION}") - - Linux Kernel: $(uname -rpio) - - GPU Driver versions: $(nvidia-smi | grep 'Version:') - - Docker: $(docker -v) - - Docker-compose: $(docker compose -v) + - Distribution: + - Linux Kernel: + - GPU Driver versions: + - Docker: + - Docker-compose: validations: required: true - type: textarea