Skip to content

Commit bd154e8

Browse files
authored
Fix the error of issue templates.
Fix the error of issue templates added by #1002 .
2 parents 7d7858c + 5b77447 commit bd154e8

File tree

3 files changed

+12
-24
lines changed

3 files changed

+12
-24
lines changed

.github/ISSUE_TEMPLATE/blank_issue.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,11 @@ name: Blank Issue
22
description: Submit an issue about Tensorflow.NET.
33
labels: [Blank Issue]
44
body:
5-
- type: markdown
5+
- type: textarea
66
id: description
77
attributes:
88
label: Description
99
description: Please describe the issue here.
1010
placeholder: Description
1111
validations:
1212
required: false
13-
- type: markdown
14-
attributes:
15-
value: |
16-
No matched issue template? Try the blank issue! We welcome submitting issues to Tensorflow.NET!

.github/ISSUE_TEMPLATE/bug_report.yml

+5-9
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ body:
77
attributes:
88
value: |
99
We welcome bug reports! Any unexpected behavior could be a BUG and this template help us gather the information to fix it.
10-
- type: markdown
10+
- type: textarea
1111
id: background
1212
attributes:
1313
label: Description
1414
description: Please share a clear and concise description of the problem.
1515
placeholder: Description
1616
validations:
1717
required: true
18-
- type: markdown
18+
- type: textarea
1919
id: repro-steps
2020
attributes:
2121
label: Reproduction Steps
@@ -24,7 +24,7 @@ body:
2424
placeholder: Minimal Reproduction
2525
validations:
2626
required: false
27-
- type: markdown
27+
- type: textarea
2828
id: known-workarounds
2929
attributes:
3030
label: Known Workarounds
@@ -33,7 +33,7 @@ body:
3333
placeholder: Known Workarounds
3434
validations:
3535
required: false
36-
- type: markdown
36+
- type: textarea
3737
id: configuration
3838
attributes:
3939
label: Configuration and Other Information
@@ -45,8 +45,4 @@ body:
4545
* Any other information about this problem?
4646
placeholder: Configuration
4747
validations:
48-
required: false
49-
- type: markdown
50-
attributes:
51-
value: |
52-
Thanks for reporting the problem to us!
48+
required: false

.github/ISSUE_TEMPLATE/feature_request.yml

+6-10
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ body:
77
attributes:
88
value: |
99
We welcome feature proposal/request! This template will help us gather the information we need to implement the new feature.
10-
- type: markdown
10+
- type: textarea
1111
id: background
1212
attributes:
1313
label: Background and Feature Description
1414
description: Please describe the purpose and value of the new feature here. If the feature is linked to a specific problem, please describe it or put the link here.
1515
placeholder: Purpose
1616
validations:
1717
required: true
18-
- type: markdown
18+
- type: textarea
1919
id: api-proposal
2020
attributes:
2121
label: API Definition and Usage
@@ -26,11 +26,11 @@ body:
2626
```cs
2727
public Tensor NewFunc(Tensor x, int y);
2828
29-
var result = NewFunc(input, index);
29+
var result = NewFunc(input, index);
3030
```
3131
validations:
3232
required: false
33-
- type: markdown
33+
- type: textarea
3434
id: alternatives
3535
attributes:
3636
label: Alternatives
@@ -39,16 +39,12 @@ body:
3939
placeholder: Alternatives
4040
validations:
4141
required: false
42-
- type: markdown
42+
- type: textarea
4343
id: risks
4444
attributes:
4545
label: Risks
4646
description: |
4747
Please mention any risks that to your knowledge the API proposal might entail, such as breaking changes, performance regressions, etc.
4848
placeholder: Risks
4949
validations:
50-
required: false
51-
- type: markdown
52-
attributes:
53-
value: |
54-
Thanks for your contributing!
50+
required: false

0 commit comments

Comments
 (0)