summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanny Colin <dannycolin@users.noreply.github.com>2021-09-01 10:23:56 -0400
committerGitHub <noreply@github.com>2021-09-01 16:23:56 +0200
commitaf05f321d778ba782e3df35fb2a23ef5901f1959 (patch)
treef3e00b5d92231b2c7318ca5b081f8e74fb81e973
parent1d69aea295ea8ca4c371d9fbbb1c4de39b2fc1ea (diff)
Update bug report template to the new GitHub issue form format (#1416)
* update bug report template to the new GitHub issue form format * rename file to yml
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md57
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.yml65
2 files changed, 65 insertions, 57 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index 153acf37..00000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,57 +0,0 @@
----
-name: Bug report
-about: rofi might be misbehaving
-labels: bug
-title: "[BUG] "
-assignees: ''
----
-:exclamation:
-First read the [guidelines](https://github.com/DaveDavenport/rofi/blob/next/.github/CONTRIBUTING.md)!
-This is not optional for any report/question. People must be able to understand the full context of the report when reading it, at any time.
-If you feel like you “just have a simple question”, please consider you’re wrong and still fill the full report.
-Any report missing these informations will be labeled as “Incomplete Report - Please follow the guidelines” and may not be answered in a timely fashion.
-
-If you are unsure, please use the
-[discussion](https://github.com/davatorium/rofi/discussions) forum first. It is
-easy to upgrade a question to an issue in github.
-:exclamation:
-
-## Version
-
-Output of `rofi -v`
-
-
-## Configuration
-
-Output of `rofi -help` (in a [gist](https://gist.github.com/), please paste the *full* output)
-
-
-## Launch Command
-
-`The commandline used to launch **rofi**`
-
-
-## Steps to reproduce
-
-- Step 1
-- Step 2
-
-
-## What behaviour you see
-
-- ...
-
-
-## What behaviour you expect to see
-
-- ...
-
-
-**Additional details:**
-- Include a link to your private config
-- Include screenshots/casts of your issue
-
-
-**Please do not submit reports related to wayland, see
-[here](https://github.com/DaveDavenport/rofi/wiki/Wayland) for more
-information.**
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 00000000..73ab17fb
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,65 @@
+name: Bug Report
+description: Report a problem in Rofi
+labels: [bug]
+title: "[BUG] "
+body:
+
+ - type: markdown
+ attributes:
+ value: |
+ First read the [guidelines](https://github.com/DaveDavenport/rofi/blob/next/.github/CONTRIBUTING.md)! This is not optional for any report/question. People must be able to understand the full context of the report when reading it, at any time.
+
+ If you feel like you “just have a simple question”, please consider you’re wrong and still fill the full report. Any report missing these informations will be labeled as “Incomplete Report - Please follow the guidelines” and may not be answered in a timely fashion.
+
+ If you are unsure, please use the [discussion](https://github.com/davatorium/rofi/discussions) forum first. It is easy to upgrade a question to an issue in github.
+
+ **Please do not submit reports related to wayland, see [here](https://github.com/DaveDavenport/rofi/wiki/Wayland) for more information.**
+
+ - type: input
+ attributes:
+ label: "Rofi version (rofi -v)"
+ placeholder: "Version: 1.6.0"
+ validations:
+ required: true
+ - type: input
+ attributes:
+ label: "Configuration"
+ description: "Please use https://gist.github.com"
+ placeholder: "Gist URL"
+ validations:
+ required: true
+ - type: input
+ attributes:
+ label: "Launch command"
+ placeholder: "rofi -show drun"
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: "Step to reproduce"
+ placeholder: |
+ * Step 1
+ * Step 2
+ * ...
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: "Expected behavior"
+ description: "Describe the behavior you expect. May include logs, images, or videos."
+ validations:
+ required: true
+ - type: textarea
+ attributes:
+ label: "Actual behavior"
+ validations:
+ required: true
+ - type: textarea
+ attributes:
+ label: "Additional information"
+ validations:
+ required: false
+
+