Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add issue templates. #700

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/blank_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Blank Issue
description: Submit any other kind of issue.
labels: [Blank Issue]
body:
- type: textarea
id: description
attributes:
label: Description
description: Please describe the issue here.
placeholder: Description
validations:
required: false
52 changes: 52 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: BUG Report
description: Report a BUG of Tensorflow.NET.
title: "[BUG]: "
labels: [bug-report]
body:
- type: markdown
attributes:
value: |
To help us fix your problem more quickly, please check the following steps at first.
- [ ] I have read the related documents.
- [ ] I have searched the keywords in the issues.
- type: textarea
id: background
attributes:
label: Description
description: Please share a clear description of the problem.
placeholder: Description
validations:
required: true
- type: textarea
id: repro-steps
attributes:
label: Reproduction Steps
description: |
Please describe how to reproduce the problem here. A minimal example code is the best.
placeholder: Reproduction Steps
validations:
required: true
- type: textarea
id: configuration
attributes:
label: Environment & Configuration
description: |
Please provide the information of your environment and configuration.
placeholder: Environment & Configuration
value: |
Operating system:
.NET runtime version:
LLamaSharp version:
CUDA version (if you are using cuda backend):
CPU & GPU device:
validations:
required: true
- type: textarea
id: known-workarounds
attributes:
label: Known Workarounds
description: |
Please provide a description of the known workarounds, if any.
placeholder: Known Workarounds
validations:
required: false
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Feature Request
description: Request/Propose a new feature in LLamaSharp.
title: "[Feature]: "
labels: [feature-request]
body:
- type: markdown
attributes:
value: |
Feature proposal/request is always welcomed!
- type: textarea
id: background
attributes:
label: Background & Description
description: Please describe the purpose and value of the new feature here.
placeholder: Background & Description
validations:
required: true
- type: textarea
id: api-proposal
attributes:
label: API & Usage
description: |
Please tell us the new APIs related to the feature, if any. Please describe when and how it is used.
placeholder: API & Usage
validations:
required: false
- type: textarea
id: implementation
attributes:
label: How to implement
description: |
Please describe how you think the feature should be implemented. It's okay leave it blank.
placeholder: How to implement
validations:
required: false
Loading