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.
This commit is contained in:
Carlo Cabrera 2021-12-02 04:05:37 +08:00
parent d7e6f197d7
commit 4d768e85c2
No known key found for this signature in database
GPG Key ID: C74D447FC549A1D0

View File

@ -1,6 +1,6 @@
name: New issue for Reproducible Bug 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." 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: body:
- type: markdown - type: markdown
attributes: attributes:
@ -19,6 +19,7 @@ body:
required: true required: true
- type: checkboxes - type: checkboxes
attributes: attributes:
label: Verification
description: Please verify that you've followed these steps. description: Please verify that you've followed these steps.
options: options:
- label: I ran `brew update` and am still able to reproduce my issue. - label: I ran `brew update` and am still able to reproduce my issue.