forked from opea-project/GenAIComps
-
Notifications
You must be signed in to change notification settings - Fork 0
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 (opea-project#785)
Signed-off-by: isaacncz <isaac.ng@intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Rachel R <rroumeliotis@gmail.com>
- Loading branch information
1 parent
acf07cd
commit c1c5798
Showing
3 changed files
with
220 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,137 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Report Bug | ||
description: Used to report bug | ||
title: "[Bug]" | ||
body: | ||
- type: dropdown | ||
id: priority | ||
attributes: | ||
label: Priority | ||
options: | ||
- Undecided | ||
- P1-Stopper | ||
- P2-High | ||
- P3-Medium | ||
- P4-Low | ||
default: 0 | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: OS type | ||
options: | ||
- Ubuntu | ||
- RedHat | ||
- SUSE | ||
- Windows | ||
- Mac | ||
- BSD | ||
- Other (Please let us know in description) | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: hardware | ||
attributes: | ||
label: Hardware type | ||
options: | ||
- Xeon-GNR | ||
- Xeon-EMR | ||
- Xeon-SPR | ||
- Xeon-ICX | ||
- Xeon-other (Please let us know in description) | ||
- Gaudi3 | ||
- Gaudi2 | ||
- AI-PC (Please let us know in description) | ||
- CPU-other (Please let us know in description) | ||
- GPU-PVC | ||
- GPU-Flex | ||
- GPU-Arc | ||
- GPU-Arc-MTL | ||
- GPU-Nvidia | ||
- GPU-AMD | ||
- GPU-other (Please let us know in description) | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: install | ||
attributes: | ||
label: Installation method | ||
options: | ||
- label: Pull docker images from hub.docker.com | ||
- label: Build docker images from source | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: deploy | ||
attributes: | ||
label: Deploy method | ||
options: | ||
- label: Docker compose | ||
- label: Docker | ||
- label: Kubernetes | ||
- label: Helm | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: node | ||
attributes: | ||
label: Running nodes | ||
options: | ||
- Single Node | ||
- Multiple Nodes | ||
default: 0 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: version | ||
attributes: | ||
label: What's the version? | ||
description: Docker ID in hub.docker.com or commit ID of Dockerfile. | ||
placeholder: | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Description | ||
description: What is the problem, question, or error? | ||
validations: | ||
required: true | ||
|
||
|
||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: Reproduce steps | ||
description: | ||
validations: | ||
required: true | ||
|
||
|
||
- type: textarea | ||
id: log | ||
attributes: | ||
label: Raw log | ||
description: Provide the log of RESTFul API or docker for micro-service by `docker logs CONTAINER` | ||
render: shell | ||
validations: | ||
required: false | ||
|
||
|
||
- type: file | ||
id: attachments | ||
attributes: | ||
label: Attachments | ||
description: Attach any relevant files or screenshots. | ||
validations: | ||
required: false |
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,79 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Report Feature | ||
description: Used to report feature | ||
title: "[Feature]" | ||
body: | ||
- type: dropdown | ||
id: priority | ||
attributes: | ||
label: Priority | ||
options: | ||
- Undecided | ||
- P1-Stopper | ||
- P2-High | ||
- P3-Medium | ||
- P4-Low | ||
default: 0 | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: OS type | ||
options: | ||
- Ubuntu | ||
- RedHat | ||
- SUSE | ||
- Windows | ||
- Mac | ||
- BSD | ||
- Other (Please let us know in description) | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: hardware | ||
attributes: | ||
label: Hardware type | ||
options: | ||
- Xeon-GNR | ||
- Xeon-EMR | ||
- Xeon-SPR | ||
- Xeon-ICX | ||
- Xeon-other (Please let us know in description) | ||
- Gaudi3 | ||
- Gaudi2 | ||
- AI-PC (Please let us know in description) | ||
- CPU-other (Please let us know in description) | ||
- GPU-PVC | ||
- GPU-Flex | ||
- GPU-Arc | ||
- GPU-Arc-MTL | ||
- GPU-Nvidia | ||
- GPU-AMD | ||
- GPU-other (Please let us know in description) | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: node | ||
attributes: | ||
label: Running nodes | ||
options: | ||
- Single Node | ||
- Multiple Nodes | ||
default: 0 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Description | ||
description: Please provide a detailed description of the issue and your expectations. Avoid requesting specific solutions, as we aim to offer the most effective resolution. | ||
placeholder: As a cloud/AI PC user, I require xxxx to ensure that I/customers can xxx effectively. | ||
validations: | ||
required: true |
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,4 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
blank_issues_enabled: true |