Browse Source
Make more fields mandatory in bug report template (#10883)
-> to make people actually give us the information we need
pull/10900/head
Max Gautier
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
7 additions and
0 deletions
-
.github/ISSUE_TEMPLATE/bug-report.yaml
|
@ -93,17 +93,24 @@ body: |
|
|
attributes: |
|
|
attributes: |
|
|
label: Full inventory with variables |
|
|
label: Full inventory with variables |
|
|
placeholder: 'ansible -i inventory/sample/inventory.ini all -m debug -a "var=hostvars[inventory_hostname]"' |
|
|
placeholder: 'ansible -i inventory/sample/inventory.ini all -m debug -a "var=hostvars[inventory_hostname]"' |
|
|
|
|
|
description: We recommend using snippets services like https://gist.github.com/ etc. |
|
|
|
|
|
validations: |
|
|
|
|
|
required: true |
|
|
|
|
|
|
|
|
- type: input |
|
|
- type: input |
|
|
id: ansible_command |
|
|
id: ansible_command |
|
|
attributes: |
|
|
attributes: |
|
|
label: Command used to invoke ansible |
|
|
label: Command used to invoke ansible |
|
|
|
|
|
validations: |
|
|
|
|
|
required: true |
|
|
|
|
|
|
|
|
- type: textarea |
|
|
- type: textarea |
|
|
id: ansible_output |
|
|
id: ansible_output |
|
|
attributes: |
|
|
attributes: |
|
|
label: Output of ansible run |
|
|
label: Output of ansible run |
|
|
description: We recommend using snippets services like https://gist.github.com/ etc. |
|
|
description: We recommend using snippets services like https://gist.github.com/ etc. |
|
|
|
|
|
validations: |
|
|
|
|
|
required: true |
|
|
|
|
|
|
|
|
- type: textarea |
|
|
- type: textarea |
|
|
id: anything_else |
|
|
id: anything_else |
|
|