mirror of
https://github.com/php/frankenphp.git
synced 2026-03-24 00:52:11 +01:00
Updated bug report template for clarity and detail. --------- Signed-off-by: Kévin Dunglas <kevin@dunglas.fr> Co-authored-by: henderkes <m@pyc.ac>
97 lines
2.7 KiB
YAML
97 lines
2.7 KiB
YAML
---
|
|
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!
|
|
|
|
Before submitting, please ensure that your issue:
|
|
|
|
* Is not [a known issue](https://frankenphp.dev/docs/known-issues/).
|
|
* Has not [already been reported](https://github.com/php/frankenphp/issues).
|
|
* Is not caused by a dependency (like Caddy or PHP itself). If the issue is with a dependency, please report it to the upstream project directly.
|
|
- type: textarea
|
|
id: what-happened
|
|
attributes:
|
|
label: What happened?
|
|
description: |
|
|
Tell us what you do, what you get, and what you expected.
|
|
Provide us with some step-by-step instructions to reproduce the issue.
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: build
|
|
attributes:
|
|
label: Build Type
|
|
description: What build of FrankenPHP do you use?
|
|
options:
|
|
- Docker (Debian Trixie)
|
|
- Docker (Debian Bookworm)
|
|
- Docker (Alpine)
|
|
- apk packages
|
|
- deb packages
|
|
- RPM packages
|
|
- Static binary
|
|
- Custom (tell us more in the description)
|
|
default: 0
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: worker
|
|
attributes:
|
|
label: Worker Mode
|
|
description: Does the problem happen only when using the worker mode?
|
|
options:
|
|
- "Yes"
|
|
- "No"
|
|
default: 0
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: os
|
|
attributes:
|
|
label: Operating System
|
|
description: What operating system are you executing FrankenPHP with?
|
|
options:
|
|
- GNU/Linux
|
|
- macOS
|
|
- Windows
|
|
- FreeBSD
|
|
- Other (tell us more in the description)
|
|
default: 0
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: arch
|
|
attributes:
|
|
label: CPU Architecture
|
|
description: What CPU architecture are you using?
|
|
options:
|
|
- x86_64
|
|
- Apple Silicon
|
|
- x86
|
|
- aarch64
|
|
- Other (tell us more in the description)
|
|
default: 0
|
|
- type: textarea
|
|
id: php
|
|
attributes:
|
|
label: PHP configuration
|
|
description: |
|
|
Please copy and paste the output of the `phpinfo()` function -- remember to remove **sensitive information** like passwords, API keys, etc.
|
|
render: shell
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Relevant log output
|
|
description: |
|
|
Please copy and paste any relevant log output.
|
|
This will be automatically formatted into code,
|
|
so no need for backticks.
|
|
render: shell
|