summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorThayne McCombs <astrothayne@gmail.com>2021-11-01 23:05:33 -0600
committerThayne McCombs <astrothayne@gmail.com>2021-11-03 02:33:46 -0600
commitfd493eb7093f8d7a83afda7712b956a56081bdca (patch)
tree0a497832c875e453127ddb2a5ba50afdc31a8237 /.github
parentf1b39d49c1371f5e41c92f21acb4e5186362bd01 (diff)
Change bug_report from an issue template to an issue form
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md28
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.yaml41
2 files changed, 41 insertions, 28 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index 58eb9f2..0000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-name: Bug Report
-about: Report a bug.
-title: ""
-labels: bug
-assignees: ''
-
----
-
-**Describe the bug you encountered:**
-
-<!--
-Please check out the troubleshooting section first:
- https://github.com/sharkdp/fd#troubleshooting
--->
-
-
-**Describe what you expected to happen:**
-
-
-**What version of `fd` are you using?**
-<!-- paste the output of `fd --version` here -->
-
-**Which operating system / distribution are you on?**
-<!--
-Unix: paste the output of `uname -srm` and `lsb_release -a` here.
-Windows: please tell us your Windows version
--->
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
new file mode 100644
index 0000000..778408d
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yaml
@@ -0,0 +1,41 @@
+name: Bug Report
+description: Report a bug.
+title: "[BUG] "
+labels: bug
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Please check out the [troubleshooting section](https://github.com/sharkdp/fd#troubleshooting) first.
+ - type: checkboxes
+ attributes:
+ options:
+ - label: I have read the troubleshooting section and still think this is a bug.
+ required: true
+ - type: textarea
+ id: bug
+ attributes:
+ label: "Describe the bug you encountered:"
+ validations:
+ required: true
+ - type: textarea
+ id: expected
+ attributes:
+ label: "Describe what you expected to happen:"
+ - type: input
+ id: version
+ attributes:
+ label: "What version of `fd` are you using?"
+ placeholder: "paste the output of `fd --version` here"
+ validations:
+ required: true
+ - type: textarea
+ id: os
+ attributes:
+ label: Which operating system / distribution are you on?
+ placeholder: |
+ Unix: paste the output of `uname -srm` and lsb_release -a` here.
+ Windows: please tell us your Windows version
+ render: shell
+ validations:
+ required: true