From c03a47a32b3a5bd1f50c260820e73c631e031764 Mon Sep 17 00:00:00 2001 From: ZhangJianyu Date: Mon, 2 Dec 2024 14:05:57 +0800 Subject: [PATCH 1/4] add label automatically when create issue Signed-off-by: ZhangJianyu --- .github/ISSUE_TEMPLATE/1_bug_template.yml | 129 ++++++++++++++++++ .github/ISSUE_TEMPLATE/2_feature_template.yml | 80 +++++++++++ .../ISSUE_TEMPLATE/1_bug_template.yml | 129 ++++++++++++++++++ .../ISSUE_TEMPLATE/2_feature_template.yml | 80 +++++++++++ .../ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml | 4 + .github/ISSUE_TEMPLATE/config.yml | 4 + 6 files changed, 426 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/1_bug_template.yml create mode 100644 .github/ISSUE_TEMPLATE/2_feature_template.yml create mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml create mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml create mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/1_bug_template.yml b/.github/ISSUE_TEMPLATE/1_bug_template.yml new file mode 100644 index 00000000..04a760e4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1_bug_template.yml @@ -0,0 +1,129 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + +name: Report Bug +description: Used to report bug +title: "[Bug]" +labels: ["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 diff --git a/.github/ISSUE_TEMPLATE/2_feature_template.yml b/.github/ISSUE_TEMPLATE/2_feature_template.yml new file mode 100644 index 00000000..2c9e4ea8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2_feature_template.yml @@ -0,0 +1,80 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + +name: Report Feature +description: Used to report feature +title: "[Feature]" +labels: ["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: Describe your problem and expectation, avoid to ask solution (we would provide better solution). + placeholder: As cloud/AI PC user, I want xxxx, so that I/customer can xxx. + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml new file mode 100644 index 00000000..04a760e4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml @@ -0,0 +1,129 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + +name: Report Bug +description: Used to report bug +title: "[Bug]" +labels: ["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 diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml new file mode 100644 index 00000000..2c9e4ea8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml @@ -0,0 +1,80 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + +name: Report Feature +description: Used to report feature +title: "[Feature]" +labels: ["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: Describe your problem and expectation, avoid to ask solution (we would provide better solution). + placeholder: As cloud/AI PC user, I want xxxx, so that I/customer can xxx. + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..f3059f43 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,4 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + +blank_issues_enabled: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..f3059f43 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,4 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + +blank_issues_enabled: true From 7bd088baab57d066b5809fe52abe5c8aeeab5d12 Mon Sep 17 00:00:00 2001 From: ZhangJianyu Date: Mon, 2 Dec 2024 14:58:37 +0800 Subject: [PATCH 2/4] rm folder Signed-off-by: ZhangJianyu --- .../ISSUE_TEMPLATE/1_bug_template.yml | 129 ------------------ .../ISSUE_TEMPLATE/2_feature_template.yml | 80 ----------- .../ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml | 4 - 3 files changed, 213 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml delete mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml delete mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml deleted file mode 100644 index 04a760e4..00000000 --- a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml +++ /dev/null @@ -1,129 +0,0 @@ -# Copyright (C) 2024 Intel Corporation -# SPDX-License-Identifier: Apache-2.0 - -name: Report Bug -description: Used to report bug -title: "[Bug]" -labels: ["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 diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml deleted file mode 100644 index 2c9e4ea8..00000000 --- a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright (C) 2024 Intel Corporation -# SPDX-License-Identifier: Apache-2.0 - -name: Report Feature -description: Used to report feature -title: "[Feature]" -labels: ["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: Describe your problem and expectation, avoid to ask solution (we would provide better solution). - placeholder: As cloud/AI PC user, I want xxxx, so that I/customer can xxx. - validations: - required: true diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index f3059f43..00000000 --- a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,4 +0,0 @@ -# Copyright (C) 2024 Intel Corporation -# SPDX-License-Identifier: Apache-2.0 - -blank_issues_enabled: true From 25718b5a3be8e61a6cc96e1651dce6841650da29 Mon Sep 17 00:00:00 2001 From: ZhangJianyu Date: Mon, 2 Dec 2024 14:05:57 +0800 Subject: [PATCH 3/4] add label automatically when create issue Signed-off-by: ZhangJianyu --- .../ISSUE_TEMPLATE/1_bug_template.yml | 129 ++++++++++++++++++ .../ISSUE_TEMPLATE/2_feature_template.yml | 80 +++++++++++ .../ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml | 4 + 3 files changed, 213 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml create mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml create mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml new file mode 100644 index 00000000..04a760e4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml @@ -0,0 +1,129 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + +name: Report Bug +description: Used to report bug +title: "[Bug]" +labels: ["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 diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml new file mode 100644 index 00000000..2c9e4ea8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml @@ -0,0 +1,80 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + +name: Report Feature +description: Used to report feature +title: "[Feature]" +labels: ["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: Describe your problem and expectation, avoid to ask solution (we would provide better solution). + placeholder: As cloud/AI PC user, I want xxxx, so that I/customer can xxx. + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..f3059f43 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,4 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + +blank_issues_enabled: true From 561c65cf097081e2cfc79c937ef9caaf5284c6b0 Mon Sep 17 00:00:00 2001 From: ZhangJianyu Date: Mon, 2 Dec 2024 14:58:37 +0800 Subject: [PATCH 4/4] rm folder Signed-off-by: ZhangJianyu --- .../ISSUE_TEMPLATE/1_bug_template.yml | 129 ------------------ .../ISSUE_TEMPLATE/2_feature_template.yml | 80 ----------- .../ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml | 4 - 3 files changed, 213 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml delete mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml delete mode 100644 .github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml deleted file mode 100644 index 04a760e4..00000000 --- a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/1_bug_template.yml +++ /dev/null @@ -1,129 +0,0 @@ -# Copyright (C) 2024 Intel Corporation -# SPDX-License-Identifier: Apache-2.0 - -name: Report Bug -description: Used to report bug -title: "[Bug]" -labels: ["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 diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml deleted file mode 100644 index 2c9e4ea8..00000000 --- a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/2_feature_template.yml +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright (C) 2024 Intel Corporation -# SPDX-License-Identifier: Apache-2.0 - -name: Report Feature -description: Used to report feature -title: "[Feature]" -labels: ["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: Describe your problem and expectation, avoid to ask solution (we would provide better solution). - placeholder: As cloud/AI PC user, I want xxxx, so that I/customer can xxx. - validations: - required: true diff --git a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index f3059f43..00000000 --- a/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,4 +0,0 @@ -# Copyright (C) 2024 Intel Corporation -# SPDX-License-Identifier: Apache-2.0 - -blank_issues_enabled: true