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. description: Submit an issue about Tensorflow.NET.
labels: [Blank Issue] labels: [Blank Issue]
body: body:
- type: markdown
- type: textarea
id: description id: description
attributes: attributes:
label: Description label: Description
@@ -10,7 +10,3 @@ body:
placeholder: Description placeholder: Description
validations: validations:
required: false 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: attributes:
value: | value: |
We welcome bug reports! Any unexpected behavior could be a BUG and this template help us gather the information to fix it. 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 id: background
attributes: attributes:
label: Description label: Description
@@ -15,7 +15,7 @@ body:
placeholder: Description placeholder: Description
validations: validations:
required: true required: true
- type: markdown
- type: textarea
id: repro-steps id: repro-steps
attributes: attributes:
label: Reproduction Steps label: Reproduction Steps
@@ -24,7 +24,7 @@ body:
placeholder: Minimal Reproduction placeholder: Minimal Reproduction
validations: validations:
required: false required: false
- type: markdown
- type: textarea
id: known-workarounds id: known-workarounds
attributes: attributes:
label: Known Workarounds label: Known Workarounds
@@ -33,7 +33,7 @@ body:
placeholder: Known Workarounds placeholder: Known Workarounds
validations: validations:
required: false required: false
- type: markdown
- type: textarea
id: configuration id: configuration
attributes: attributes:
label: Configuration and Other Information label: Configuration and Other Information
@@ -45,8 +45,4 @@ body:
* Any other information about this problem? * Any other information about this problem?
placeholder: Configuration placeholder: Configuration
validations: 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: attributes:
value: | value: |
We welcome feature proposal/request! This template will help us gather the information we need to implement the new feature. 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 id: background
attributes: attributes:
label: Background and Feature Description label: Background and Feature Description
@@ -15,7 +15,7 @@ body:
placeholder: Purpose placeholder: Purpose
validations: validations:
required: true required: true
- type: markdown
- type: textarea
id: api-proposal id: api-proposal
attributes: attributes:
label: API Definition and Usage label: API Definition and Usage
@@ -26,11 +26,11 @@ body:
```cs ```cs
public Tensor NewFunc(Tensor x, int y); public Tensor NewFunc(Tensor x, int y);


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

Loading…
Cancel
Save