Browse Source

Fix the error of issue templates.

tags/v0.100.5-BERT-load
Yaohui Liu 2 years ago
parent
commit
5b774470ce
No known key found for this signature in database GPG Key ID: E86D01E1809BD23E
3 changed files with 12 additions and 24 deletions
  1. +1
    -5
      .github/ISSUE_TEMPLATE/blank_issue.yml
  2. +5
    -9
      .github/ISSUE_TEMPLATE/bug_report.yml
  3. +6
    -10
      .github/ISSUE_TEMPLATE/feature_request.yml

+ 1
- 5
.github/ISSUE_TEMPLATE/blank_issue.yml View File

@@ -2,7 +2,7 @@ name: Blank Issue
description: Submit an issue about Tensorflow.NET.
labels: [Blank Issue]
body:
- type: markdown
- type: textarea
id: description
attributes:
label: Description
@@ -10,7 +10,3 @@ body:
placeholder: Description
validations:
required: false
- type: markdown
attributes:
value: |
No matched issue template? Try the blank issue! We welcome submitting issues to Tensorflow.NET!

+ 5
- 9
.github/ISSUE_TEMPLATE/bug_report.yml View File

@@ -7,7 +7,7 @@ body:
attributes:
value: |
We welcome bug reports! Any unexpected behavior could be a BUG and this template help us gather the information to fix it.
- type: markdown
- type: textarea
id: background
attributes:
label: Description
@@ -15,7 +15,7 @@ body:
placeholder: Description
validations:
required: true
- type: markdown
- type: textarea
id: repro-steps
attributes:
label: Reproduction Steps
@@ -24,7 +24,7 @@ body:
placeholder: Minimal Reproduction
validations:
required: false
- type: markdown
- type: textarea
id: known-workarounds
attributes:
label: Known Workarounds
@@ -33,7 +33,7 @@ body:
placeholder: Known Workarounds
validations:
required: false
- type: markdown
- type: textarea
id: configuration
attributes:
label: Configuration and Other Information
@@ -45,8 +45,4 @@ body:
* Any other information about this problem?
placeholder: Configuration
validations:
required: false
- type: markdown
attributes:
value: |
Thanks for reporting the problem to us!
required: false

+ 6
- 10
.github/ISSUE_TEMPLATE/feature_request.yml View File

@@ -7,7 +7,7 @@ body:
attributes:
value: |
We welcome feature proposal/request! This template will help us gather the information we need to implement the new feature.
- type: markdown
- type: textarea
id: background
attributes:
label: Background and Feature Description
@@ -15,7 +15,7 @@ body:
placeholder: Purpose
validations:
required: true
- type: markdown
- type: textarea
id: api-proposal
attributes:
label: API Definition and Usage
@@ -26,11 +26,11 @@ body:
```cs
public Tensor NewFunc(Tensor x, int y);

var result = NewFunc(input, index);
var result = NewFunc(input, index);
```
validations:
required: false
- type: markdown
- type: textarea
id: alternatives
attributes:
label: Alternatives
@@ -39,7 +39,7 @@ body:
placeholder: Alternatives
validations:
required: false
- type: markdown
- type: textarea
id: risks
attributes:
label: Risks
@@ -47,8 +47,4 @@ body:
Please mention any risks that to your knowledge the API proposal might entail, such as breaking changes, performance regressions, etc.
placeholder: Risks
validations:
required: false
- type: markdown
attributes:
value: |
Thanks for your contributing!
required: false

Loading…
Cancel
Save