2021-06-23 21:29:10 +00:00
|
|
|
name: Bug Report
|
|
|
|
description: Create a report to help us improve.
|
|
|
|
labels: [bug]
|
|
|
|
body:
|
|
|
|
- type: checkboxes
|
|
|
|
id: terms
|
|
|
|
attributes:
|
|
|
|
label: Welcome
|
|
|
|
options:
|
|
|
|
- label: Yes, I'm using a binary release within 2 latest releases.
|
|
|
|
required: true
|
|
|
|
- label: Yes, I've searched similar issues on GitHub and didn't find any.
|
|
|
|
required: true
|
|
|
|
- label: Yes, I've included all information below (version, config, etc).
|
|
|
|
required: true
|
|
|
|
|
|
|
|
- type: textarea
|
|
|
|
id: expected
|
|
|
|
attributes:
|
|
|
|
label: What did you expect to see?
|
|
|
|
placeholder: Description.
|
|
|
|
validations:
|
|
|
|
required: true
|
|
|
|
|
|
|
|
- type: textarea
|
|
|
|
id: current
|
|
|
|
attributes:
|
|
|
|
label: What did you see instead?
|
|
|
|
placeholder: Description.
|
|
|
|
validations:
|
|
|
|
required: true
|
|
|
|
|
2021-07-01 23:10:50 +00:00
|
|
|
- type: dropdown
|
|
|
|
id: type
|
|
|
|
attributes:
|
|
|
|
label: How do you use lego?
|
|
|
|
options:
|
|
|
|
- Library
|
|
|
|
- Binary
|
|
|
|
- Docker image
|
|
|
|
- Through Traefik
|
|
|
|
- Through Caddy
|
2023-02-15 13:47:08 +00:00
|
|
|
- Through Terraform ACME provider
|
|
|
|
- Through Bitnami
|
2021-07-01 23:10:50 +00:00
|
|
|
- Other
|
|
|
|
validations:
|
|
|
|
required: true
|
|
|
|
|
2021-06-23 21:29:10 +00:00
|
|
|
- type: textarea
|
|
|
|
id: steps
|
|
|
|
attributes:
|
|
|
|
label: Reproduction steps
|
|
|
|
description: "How do you trigger this bug? Please walk us through it step by step."
|
2021-07-01 23:10:50 +00:00
|
|
|
placeholder: |
|
2021-06-23 21:29:10 +00:00
|
|
|
1. ...
|
|
|
|
2. ...
|
|
|
|
3. ...
|
|
|
|
...
|
|
|
|
validations:
|
|
|
|
required: true
|
|
|
|
|
|
|
|
- type: textarea
|
|
|
|
id: version
|
|
|
|
attributes:
|
|
|
|
label: Version of lego
|
2021-07-01 23:10:50 +00:00
|
|
|
description: |-
|
|
|
|
```console
|
|
|
|
$ lego --version
|
|
|
|
```
|
|
|
|
placeholder: Paste output here
|
|
|
|
render: console
|
|
|
|
validations:
|
|
|
|
required: true
|
|
|
|
|
|
|
|
- type: textarea
|
|
|
|
id: logs
|
|
|
|
attributes:
|
|
|
|
label: Logs
|
2021-06-23 21:29:10 +00:00
|
|
|
value: |-
|
|
|
|
<details>
|
|
|
|
|
|
|
|
```console
|
|
|
|
# paste output here
|
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
|
|
|
validations:
|
|
|
|
required: true
|
|
|
|
|
|
|
|
- type: textarea
|
2021-07-01 23:10:50 +00:00
|
|
|
id: go-env
|
2021-06-23 21:29:10 +00:00
|
|
|
attributes:
|
2021-07-01 23:10:50 +00:00
|
|
|
label: Go environment (if applicable)
|
2021-06-23 21:29:10 +00:00
|
|
|
value: |-
|
|
|
|
<details>
|
|
|
|
|
|
|
|
```console
|
2021-07-01 23:10:50 +00:00
|
|
|
$ go version && go env
|
2021-06-23 21:29:10 +00:00
|
|
|
# paste output here
|
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
|
|
|
validations:
|
2021-07-01 23:10:50 +00:00
|
|
|
required: false
|