diff options
| author | Frank LENORMAND <lenormf@gmail.com> | 2021-09-13 10:38:58 +0300 |
|---|---|---|
| committer | Frank LENORMAND <lenormf@gmail.com> | 2021-09-13 11:55:43 +0300 |
| commit | 777d92b2ed2f58dffd30554bdafc5141e5dd4843 (patch) | |
| tree | 02d8450542595a93b1928a482a48534d1b2dd1b0 /.github | |
| parent | b3a1017a264cfea7e9ae1a374208e9b02efbda5a (diff) | |
github bug_report: Migrate template to YAML
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 11 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 28 |
2 files changed, 28 insertions, 11 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index ffe99203..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -name: Bug report -about: Report an unexpected behaviour with the editor -labels: bug ---- - -### Steps <!-- how to reproduce the issue? --> - -### Outcome <!-- what is the result of the above steps? --> - -### Expected <!-- what should have been the result of the above steps? --> diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..871011d5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,28 @@ +name: Bug report +description: Report an unexpected behaviour with the editor +labels: bug +title: "[BUG] " +body: + + - type: textarea + attributes: + label: "Reproducer" + description: "What are the steps to follow to reproduce the issue?" + placeholder: | + If any specific configuration or environment settings are required to reproduce the issue, also describe them here. + validations: + required: true + + - type: textarea + attributes: + label: "Outcome" + description: "What is the outcome of the reproducing steps above?" + validations: + required: true + + - type: textarea + attributes: + label: "Expectations" + description: "What was the expected outcome of the reproducing steps above?" + validations: + required: true |
