Skip to content

Commit ab68a37

Browse files
fix YAML syntax on issue template
1 parent f795516 commit ab68a37

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
blank_issues_enabled: false
1+
---
2+
3+
blank_issues_enabled: false

.github/ISSUE_TEMPLATE/issue.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
---
2+
13
name: "Default issue"
24
description: Report any kind of issue
35
body:
@@ -13,7 +15,8 @@ body:
1315
id: reproduction
1416
attributes:
1517
label: Reproduction steps
16-
description: Please enter an explicit description to reproduce this issue
18+
description: |
19+
Please enter an explicit description to reproduce this issue
1720
value: |
1821
1.
1922
2.
@@ -52,13 +55,19 @@ body:
5255
id: logs
5356
attributes:
5457
label: Relevant log output
55-
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
58+
description: >
59+
Please copy and paste any relevant log output.
60+
This will be automatically formatted into code, so no need for
61+
backticks.
5662
render: bash
5763
- type: textarea
5864
id: usercode
5965
attributes:
6066
label: User code
61-
description: Please copy and paste any relevant user code. This will be automatically formatted into Python code, so no need for backticks.
67+
description: >
68+
Please copy and paste any relevant user code.
69+
This will be automatically formatted into Python code, so no need for
70+
backticks.
6271
render: python
6372
- type: textarea
6473
id: additional
@@ -67,4 +76,4 @@ body:
6776
description: Please provide additional informations if available
6877
placeholder: Some more informations
6978
validations:
70-
required: false
79+
required: false

0 commit comments

Comments
 (0)