mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 00:47:25 -06:00
72 lines
1.9 KiB
YAML
72 lines
1.9 KiB
YAML
name: Bug report
|
|
description: Something on Shlink is broken or not working as documented?
|
|
labels: ['bug']
|
|
body:
|
|
- type: input
|
|
validations:
|
|
required: true
|
|
attributes:
|
|
label: Shlink version
|
|
placeholder: x.y.z
|
|
- type: input
|
|
validations:
|
|
required: true
|
|
attributes:
|
|
label: PHP version
|
|
placeholder: x.y.z
|
|
- type: dropdown
|
|
validations:
|
|
required: true
|
|
attributes:
|
|
label: How do you serve Shlink
|
|
options:
|
|
- Self-hosted Apache
|
|
- Self-hosted nginx
|
|
- Self-hosted RoadRunner
|
|
- Docker image
|
|
- Other (explain in summary)
|
|
- type: dropdown
|
|
validations:
|
|
required: true
|
|
attributes:
|
|
label: Database engine
|
|
options:
|
|
- MySQL
|
|
- MariaDB
|
|
- PostgreSQL
|
|
- MicrosoftSQL
|
|
- SQLite
|
|
- type: input
|
|
validations:
|
|
required: true
|
|
attributes:
|
|
label: Database version
|
|
placeholder: x.y.z
|
|
- type: textarea
|
|
validations:
|
|
required: true
|
|
attributes:
|
|
label: Current behavior
|
|
value: '<!-- How is it actually behaving (and it should not)? -->'
|
|
- type: textarea
|
|
validations:
|
|
required: true
|
|
attributes:
|
|
label: Expected behavior
|
|
value: '<!-- How did you expect it to behave? -->'
|
|
- type: textarea
|
|
validations:
|
|
required: true
|
|
attributes:
|
|
label: Minimum steps to reproduce
|
|
value: |
|
|
<!--
|
|
Simple but detailed way to reproduce the bug:
|
|
|
|
* Avoid things like "create a kubernetes cluster", or anything related with cloud providers, as that is rarely the root cause.
|
|
* Avoid too vague steps or one-liners like "Update from v1 to v2".
|
|
* Providing the reproduction in the form of a self-contained docker-composer is desirable.
|
|
|
|
Failing in any of these will cause the issue to be closed as "not reproducible".
|
|
-->
|