-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ISSUE_TEMPLATE/ask_question.yml. (#1114)
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Need help? | ||
description: Ask a question or request help regarding ILGPU | ||
title: "[QUESTION]: <title>" | ||
labels: [ "help wanted", "question" ] | ||
|
||
body: | ||
- type: textarea | ||
id: question | ||
attributes: | ||
label: Question | ||
description: Provide a clear and concise description of your question or the issue you're facing. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: "Please provide details about your environment:" | ||
value: | | ||
- ILGPU version: [e.g., 1.5.1] | ||
- .NET version: [e.g., .NET 8] | ||
- Operating system: [e.g., Windows 10] | ||
- Hardware (if GPU-related): [e.g., NVIDIA GeForce GTX 1080] | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Include any relevant context, screenshots, or code snippets that can help us better understand and address your question or problem. | ||
validations: | ||
required: false |