From c78cdfed7cecdf0054e71f8546101804f04ea616 Mon Sep 17 00:00:00 2001 From: Wael Kdouh Date: Tue, 5 Dec 2023 10:31:51 -0500 Subject: [PATCH] Added a new issue template --- .github/ISSUE_TEMPLATE/01_bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/03_question.yml | 47 ++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE/03_question.yml diff --git a/.github/ISSUE_TEMPLATE/01_bug_report.yml b/.github/ISSUE_TEMPLATE/01_bug_report.yml index 3fa6c06d..b6c00619 100644 --- a/.github/ISSUE_TEMPLATE/01_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/01_bug_report.yml @@ -1,5 +1,5 @@ name: Bug report -description: Make sure you take a look at the closed issues before opening a new one. Create a report to help us improve. Please make sure you read the docs before opening an issue +description: Make sure you take a look at the closed issues before opening a new one. Create a report to help us improve. Please make sure you read the docs before opening an issue. title: "[BUG]" body: diff --git a/.github/ISSUE_TEMPLATE/03_question.yml b/.github/ISSUE_TEMPLATE/03_question.yml new file mode 100644 index 00000000..2d0baba1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/03_question.yml @@ -0,0 +1,47 @@ +name: Question +description: Make sure you take a look at the closed issues before opening a new one. Create a report to help us improve. Please make sure you read the docs before opening an issue. +title: "[Question]" + +body: + - type: input + id: library + attributes: + label: Release version + placeholder: e.g. APIOps Toolkit for Azure APIM v1.0.0 + validations: + required: true + - type: textarea + id: background + attributes: + label: Question Details + description: Please provide the details of your question here. + placeholder: Question Details + validations: + required: true + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + description: | + Provide a description of the expected behavior. + placeholder: Expected behavior + validations: + required: true + - type: textarea + id: actual-behavior + attributes: + label: Actual behavior + description: | + Provide a description of the actual behavior observed. If applicable please include any error messages, exception stacktraces or memory dumps. + placeholder: Actual behavior + validations: + required: true + - type: textarea + id: repro-steps + attributes: + label: Reproduction Steps + description: | + Please include minimal steps to reproduce the problem if possible. E.g.: the smallest possible code snippet; or a small project, with steps to run it. If possible include text as text rather than screenshots (so it shows up in searches). + placeholder: Minimal Reproduction + validations: + required: true