From 777d92b2ed2f58dffd30554bdafc5141e5dd4843 Mon Sep 17 00:00:00 2001 From: Frank LENORMAND Date: Mon, 13 Sep 2021 10:38:58 +0300 Subject: [PATCH] github bug_report: Migrate template to YAML --- .github/ISSUE_TEMPLATE/bug_report.md | 11 ----------- .github/ISSUE_TEMPLATE/bug_report.yml | 28 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 11 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml 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 - -### Outcome - -### Expected 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