From 4d768e85c23c2d5917e9f9586eddc449656e89a6 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Thu, 2 Dec 2021 04:05:37 +0800 Subject: [PATCH] bug.yml: fix missing `label` property Submitting bug reports hasn't worked for a while because of the missing `label`. My editor complained about `labels` needing to be an array, so I've made that one too. It was also complaining about the missing label property for the checkboxes, so I guess it knows what it's talking about here. --- .github/ISSUE_TEMPLATE/bug.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 9ac592b13a..0403b6327d 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -1,6 +1,6 @@ name: New issue for Reproducible Bug description: "If you're sure it's reproducible and not just your machine: submit an issue so we can investigate." -labels: bug +labels: [bug] body: - type: markdown attributes: @@ -19,6 +19,7 @@ body: required: true - type: checkboxes attributes: + label: Verification description: Please verify that you've followed these steps. options: - label: I ran `brew update` and am still able to reproduce my issue.