diff options
| author | Randy Palamar <randy@rnpnr.xyz> | 2024-01-23 10:42:25 -0700 |
|---|---|---|
| committer | Randy Palamar <randy@rnpnr.xyz> | 2024-01-23 10:42:25 -0700 |
| commit | 5cd6d033405d3e659ece371f1136445197d43ba7 (patch) | |
| tree | 2ebac5bb93c8a00f5ce2d0f0930cb1733964c84f | |
| parent | f41860b3cd655886ce182475c0ae9bf297f1baab (diff) | |
| download | vis-5cd6d033405d3e659ece371f1136445197d43ba7.tar.gz vis-5cd6d033405d3e659ece371f1136445197d43ba7.tar.xz | |
fix bug report template
Apparently `labels:` should be an empty list and not an empty string
if you want no default labels; my bad.
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 04190f1..ba5732d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,5 +1,5 @@ name: Bug Report -labels: '' +labels: [] description: Report a problem with vis. body: |
