forked from TrueCloudLab/lego
doc: improve issue forms. (#1448)
This commit is contained in:
parent
43779d7533
commit
505f6d548f
3 changed files with 62 additions and 7 deletions
41
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
41
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
|
@ -30,12 +30,26 @@ body:
|
|||
validations:
|
||||
required: true
|
||||
|
||||
- type: dropdown
|
||||
id: type
|
||||
attributes:
|
||||
label: How do you use lego?
|
||||
options:
|
||||
- Library
|
||||
- Binary
|
||||
- Docker image
|
||||
- Through Traefik
|
||||
- Through Caddy
|
||||
- Other
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: steps
|
||||
attributes:
|
||||
label: Reproduction steps
|
||||
description: "How do you trigger this bug? Please walk us through it step by step."
|
||||
value: |
|
||||
placeholder: |
|
||||
1. ...
|
||||
2. ...
|
||||
3. ...
|
||||
|
@ -47,15 +61,12 @@ body:
|
|||
id: version
|
||||
attributes:
|
||||
label: Version of lego
|
||||
value: |-
|
||||
<details>
|
||||
|
||||
description: |-
|
||||
```console
|
||||
$ lego --version
|
||||
# paste output here
|
||||
```
|
||||
|
||||
</details>
|
||||
placeholder: Paste output here
|
||||
render: console
|
||||
validations:
|
||||
required: true
|
||||
|
||||
|
@ -73,3 +84,19 @@ body:
|
|||
</details>
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: go-env
|
||||
attributes:
|
||||
label: Go environment (if applicable)
|
||||
value: |-
|
||||
<details>
|
||||
|
||||
```console
|
||||
$ go version && go env
|
||||
# paste output here
|
||||
```
|
||||
|
||||
</details>
|
||||
validations:
|
||||
required: false
|
||||
|
|
14
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
14
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
|
@ -9,6 +9,20 @@ body:
|
|||
- label: Yes, I've searched similar issues on GitHub and didn't find any.
|
||||
required: true
|
||||
|
||||
- type: dropdown
|
||||
id: type
|
||||
attributes:
|
||||
label: How do you use lego?
|
||||
options:
|
||||
- Library
|
||||
- Binary
|
||||
- Docker image
|
||||
- Through Traefik
|
||||
- Through Caddy
|
||||
- Other
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
|
|
14
.github/ISSUE_TEMPLATE/new_dns_provider.yml
vendored
14
.github/ISSUE_TEMPLATE/new_dns_provider.yml
vendored
|
@ -19,6 +19,20 @@ body:
|
|||
- label: Yes, I'm able to test an implementation if someone creates a pull request to add the support of this DNS provider.
|
||||
required: false
|
||||
|
||||
- type: dropdown
|
||||
id: type
|
||||
attributes:
|
||||
label: How do you use lego?
|
||||
options:
|
||||
- Library
|
||||
- Binary
|
||||
- Docker image
|
||||
- Through Traefik
|
||||
- Through Caddy
|
||||
- Other
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
id: provider-link
|
||||
attributes:
|
||||
|
|
Loading…
Reference in a new issue