From 6808ba1b3b7b0268e0ea56b029b96ab66acb1355 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 15 Apr 2022 06:03:04 -0600 Subject: [PATCH] Add more issue templates (#3095) * Create camera_support_request.yml * Update camera_support_request.yml * Create config_support_request.yml * Update and rename support_request.yml to general_support_request.yml --- .../ISSUE_TEMPLATE/camera_support_request.yml | 107 ++++++++++++++++++ .../ISSUE_TEMPLATE/config_support_request.yml | 82 ++++++++++++++ ...equest.yml => general_support_request.yml} | 4 +- 3 files changed, 191 insertions(+), 2 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/camera_support_request.yml create mode 100644 .github/ISSUE_TEMPLATE/config_support_request.yml rename .github/ISSUE_TEMPLATE/{support_request.yml => general_support_request.yml} (96%) diff --git a/.github/ISSUE_TEMPLATE/camera_support_request.yml b/.github/ISSUE_TEMPLATE/camera_support_request.yml new file mode 100644 index 000000000..7640d26ec --- /dev/null +++ b/.github/ISSUE_TEMPLATE/camera_support_request.yml @@ -0,0 +1,107 @@ +name: Camera Support Request +description: Support for setting up cameras in Frigate +title: "[Camera Support]: " +labels: ["support", "triage"] +assignees: [] +body: + - type: textarea + id: description + attributes: + label: Describe the problem you are having + validations: + required: true + - type: input + id: version + attributes: + label: Version + description: Visible on the Debug page in the Web UI + validations: + required: true + - type: textarea + id: config + attributes: + label: Frigate config file + description: This will be automatically formatted into code, so no need for backticks. + render: yaml + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + validations: + required: true + - type: textarea + id: ffprobe + attributes: + label: FFprobe output from your camera + description: Run `ffprobe ` and provide output below + render: shell + validations: + required: true + - type: textarea + id: stats + attributes: + label: Frigate stats + description: Output from frigate's /api/stats endpoint + render: json + - type: dropdown + id: os + attributes: + label: Operating system + options: + - HassOS + - Debian + - Other Linux + - Proxmox + - UNRAID + - Windows + - Other + validations: + required: true + - type: dropdown + id: install-method + attributes: + label: Install method + options: + - HassOS Addon + - Docker Compose + - Docker CLI + validations: + required: true + - type: dropdown + id: coral + attributes: + label: Coral version + options: + - USB + - PCIe + - M.2 + - Dev Board + - Other + - CPU (no coral) + validations: + required: true + - type: dropdown + id: network + attributes: + label: Network connection + options: + - Wired + - Wireless + - Mixed + validations: + required: true + - type: input + id: camera + attributes: + label: Camera make and model + description: Dahua, hikvision, amcrest, reolink, etc and model number + validations: + required: true + - type: textarea + id: other + attributes: + label: Any other information that may be helpful diff --git a/.github/ISSUE_TEMPLATE/config_support_request.yml b/.github/ISSUE_TEMPLATE/config_support_request.yml new file mode 100644 index 000000000..cb95f6fa9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config_support_request.yml @@ -0,0 +1,82 @@ +name: Config Support Request +description: Support for Frigate configuration +title: "[Config Support]: " +labels: ["support", "triage"] +assignees: [] +body: + - type: textarea + id: description + attributes: + label: Describe the problem you are having + validations: + required: true + - type: input + id: version + attributes: + label: Version + description: Visible on the Debug page in the Web UI + validations: + required: true + - type: textarea + id: config + attributes: + label: Frigate config file + description: This will be automatically formatted into code, so no need for backticks. + render: yaml + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + validations: + required: true + - type: textarea + id: stats + attributes: + label: Frigate stats + description: Output from frigate's /api/stats endpoint + render: json + - type: dropdown + id: os + attributes: + label: Operating system + options: + - HassOS + - Debian + - Other Linux + - Proxmox + - UNRAID + - Windows + - Other + validations: + required: true + - type: dropdown + id: install-method + attributes: + label: Install method + options: + - HassOS Addon + - Docker Compose + - Docker CLI + validations: + required: true + - type: dropdown + id: coral + attributes: + label: Coral version + options: + - USB + - PCIe + - M.2 + - Dev Board + - Other + - CPU (no coral) + validations: + required: true + - type: textarea + id: other + attributes: + label: Any other information that may be helpful diff --git a/.github/ISSUE_TEMPLATE/support_request.yml b/.github/ISSUE_TEMPLATE/general_support_request.yml similarity index 96% rename from .github/ISSUE_TEMPLATE/support_request.yml rename to .github/ISSUE_TEMPLATE/general_support_request.yml index 212d7db37..7138cd844 100644 --- a/.github/ISSUE_TEMPLATE/support_request.yml +++ b/.github/ISSUE_TEMPLATE/general_support_request.yml @@ -1,5 +1,5 @@ -name: Support Request -description: Support for Frigate setup or configuration +name: General Support Request +description: General support request for Frigate title: "[Support]: " labels: ["support", "triage"] assignees: []