Add issue templates

pull/512/head
Michele Locati 2022-02-16 12:25:04 +01:00
parent efaea887ae
commit 81adf2b14f
No known key found for this signature in database
GPG Key ID: 98B7CE2E7234E28B
2 changed files with 46 additions and 0 deletions

41
.github/ISSUE_TEMPLATE/bug_report.yml vendored Normal file
View File

@ -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

View File

@ -0,0 +1,5 @@
---
name: Feature request
about: Suggest an idea for this project
labels: 'enhancement'
---