From 81adf2b14f03b50fbf46f2802c62d12dfde08284 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Wed, 16 Feb 2022 12:25:04 +0100 Subject: [PATCH] Add issue templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 41 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 5 +++ 2 files changed, 46 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..058c637 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,41 @@ +name: Bug Report +description: File a bug report +labels: + - bug +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + Please remark that this project is about the `install-php-extensions` command, not about `docker-php-ext-install`. + - type: input + attributes: + label: Version of install-php-extensions + description: | + Please specify the version of `install-php-extensions version`. + You can see the version in the first line after executing the command. For example: + ```sh + $ install-php-extensions zip + install-php-extensions v.1.4.15 + ... + ``` + If it's not the [latest one](https://github.com/mlocati/docker-php-extension-installer/releases/latest) please update it: we don't support old versions. + validations: + required: true + - type: textarea + attributes: + label: Error description + description: Please describe the error + validations: + required: true + - type: input + attributes: + label: Docker image + description: For example `php:8.1-cli` + validations: + required: true + - type: textarea + attributes: + label: Minimal Dockerfile + description: Please provide the relevant parts of your Dockerfile to reproduce the issue + render: Dockerfile diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..b4139f3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,5 @@ +--- +name: Feature request +about: Suggest an idea for this project +labels: 'enhancement' +---