From e4119d0843d56902e7931d71e55d52d1197b59c3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 27 Jul 2023 02:57:01 +0200 Subject: [PATCH] docs: switch all issue templates to yaml MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 19 ------------- .github/ISSUE_TEMPLATE/feature_request.yml | 32 ++++++++++++++++++++++ 3 files changed, 33 insertions(+), 20 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index e2a862af..d930d75e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -9,7 +9,7 @@ body: value: | Thank you for reporting an issue. - This issue tracker is for bugs and issues found in e-mobility-charging-stations-simulator. + This issue tracker is for bugs and issues found in poolifier. Any misuse of this issue tracker will be closed immediately. Please fill in as much of the template below as you're able. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index ac259247..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: FEATURE_ -labels: '' -assignees: '' ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..819fa4b3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,32 @@ +name: Feature request +description: Request a feature +title: '[FEATURE]' +labels: ['enhancement', 'triage'] + +body: + - type: markdown + attributes: + value: | + Thank you for requesting a feature. + + This issue tracker is for feature requests in poolifier. + Any misuse of this issue tracker will be closed immediately. + + Please fill in as much of the template below as you're able. + - type: checkboxes + attributes: + label: Duplicate issue + options: + - label: I've searched for any related issues and avoided creating a duplicate issue. + required: true + - type: textarea + attributes: + label: Description + description: A clear and concise description of the feature. + placeholder: | + - If your feature request is related to a problem, please describe it + - If you have solutions in mind, please describe them + - type: textarea + attributes: + label: Attachments + description: Architecture or design documents, screenshots, screencast, etc. -- 2.34.1