From 86bebbf54b5d380e6a0fffec4c12d612f7829027 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Thu, 30 Jan 2025 22:14:55 +0100 Subject: [PATCH] Fix problem in bug_report.yml: body[9]: options must not include booleans. Please wrap values such as yes, and true in quotes --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 1a8d1349..4d433b3c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -83,8 +83,8 @@ body: label: Always reproducible? description: Can you reproduce your problem always? options: - - Yes - - No + - "Yes" + - "No" default: 0 validations: required: true