Skip to content

Commit

Permalink
Use <details> tag when collecting text
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebakken committed Oct 2, 2024
1 parent 3f9a57e commit ae8a355
Showing 1 changed file with 57 additions and 8 deletions.
65 changes: 57 additions & 8 deletions .github/DISCUSSION_TEMPLATE/questions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,39 +72,74 @@ body:
id: diagnostics_status
attributes:
label: rabbitmq-diagnostics status output
value: See https://www.rabbitmq.com/docs/cli to learn how to use rabbitmq-diagnostics
value: |
See https://www.rabbitmq.com/docs/cli to learn how to use rabbitmq-diagnostics
<details>
```
# PASTE OUTPUT HERE, BETWEEN BACKTICKS
```
</details>
validations:
required: true
- type: textarea
id: rabbitmq_logs
attributes:
label: Logs from node 1 (with sensitive values edited out)
description: Relevant RabbitMQ logs with sensitive values edited out
value: See https://www.rabbitmq.com/docs/logging to learn how to collect logs
value: |
See https://www.rabbitmq.com/docs/logging to learn how to collect logs
<details>
```
# PASTE LOG HERE, BETWEEN BACKTICKS
```
</details>
validations:
required: true
- type: textarea
id: logs_node_2
attributes:
label: Logs from node 2 (if applicable, with sensitive values edited out)
description: Relevant RabbitMQ logs with sensitive values edited out
value: See https://www.rabbitmq.com/docs/logging to learn how to collect logs
value: |
See https://www.rabbitmq.com/docs/logging to learn how to collect logs
<details>
```
# PASTE LOG HERE, BETWEEN BACKTICKS
```
</details>
validations:
required: false
- type: textarea
id: logs_node_3
attributes:
label: Logs from node 3 (if applicable, with sensitive values edited out)
description: Relevant RabbitMQ logs with sensitive values edited out
value: See https://www.rabbitmq.com/docs/logging to learn how to collect logs
value: |
See https://www.rabbitmq.com/docs/logging to learn how to collect logs
<details>
```
# PASTE LOG HERE, BETWEEN BACKTICKS
```
</details>
validations:
required: false
- type: textarea
id: rabbitmq_conf
attributes:
label: rabbitmq.conf
description: rabbitmq.conf contents
value: See https://www.rabbitmq.com/docs/configure#config-location to learn how to find rabbitmq.conf file location
value: |
See https://www.rabbitmq.com/docs/configure#config-location to learn how to find rabbitmq.conf file location
<details>
```
# PASTE rabbitmq.conf HERE, BETWEEN BACKTICKS
```
</details>
validations:
required: true
- type: textarea
Expand All @@ -126,7 +161,14 @@ body:
attributes:
label: advanced.config
description: advanced.config contents (if applicable)
value: See https://www.rabbitmq.com/docs/configure#config-location to learn how to find advanced.config file location
value: |
See https://www.rabbitmq.com/docs/configure#config-location to learn how to find advanced.config file location
<details>
```
# PASTE advanced.config HERE, BETWEEN BACKTICKS
```
</details>
validations:
required: false
- type: textarea
Expand All @@ -135,9 +177,12 @@ body:
label: Application code
description: Relevant messaging-related parts of application code
value: |
<details>
```python
# relevant messaging-related parts of your code go here
# PASTE CODE HERE, BETWEEN BACKTICKS
```
</details>
validations:
required: false
- type: textarea
Expand All @@ -146,8 +191,12 @@ body:
label: Kubernetes deployment file
description: Kubernetes deployment YAML that demonstrates how RabbitMQ is deployed (if applicable)
value: |
<details>
```yaml
# Relevant parts of K8S deployment that demonstrate how RabbitMQ is deployed
# PASTE YAML HERE, BETWEEN BACKTICKS
```
</details>
validations:
required: false
required: false

0 comments on commit ae8a355

Please sign in to comment.