From 7fa38b2580cee38de5d54aa3505966a5d9f9286d Mon Sep 17 00:00:00 2001 From: Pankaj Koti Date: Thu, 6 Jun 2024 17:19:08 +0530 Subject: [PATCH] Add more fields in bug template to reduce turnaround in issue triaging (#1027) Add LoadMode, ExecutionMode and InvocationMode values to be supplied in the bug report template to get upfront clarity on the setup and reduce follow-ups on the issue for those questions. --- .github/ISSUE_TEMPLATE/01-bug.yml | 38 +++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/01-bug.yml b/.github/ISSUE_TEMPLATE/01-bug.yml index c8d6492fa..658d0b9cb 100644 --- a/.github/ISSUE_TEMPLATE/01-bug.yml +++ b/.github/ISSUE_TEMPLATE/01-bug.yml @@ -41,6 +41,44 @@ body: label: Versions of dbt adapters description: What dbt adapter versions are you using? placeholder: You can use `pip freeze | grep dbt` (you can leave only relevant ones) + - type: dropdown + id: load-mode + attributes: + label: LoadMode + description: Which LoadMode are you using? + options: + - "AUTOMATIC" + - "CUSTOM" + - "DBT_LS" + - "DBT_LS_FILE" + - "DBT_LS_MANIFEST" + multiple: false + validations: + required: true + - type: dropdown + id: execution-mode + attributes: + label: ExecutionMode + description: Which ExecutionMode are you using? + options: + - "AWS_EKS" + - "AZURE_CONTAINER_INSTANCE" + - "DOCKER" + - "KUBERNETES" + - "LOCAL" + - "VIRTUALENV" + multiple: false + validations: + required: true + - type: dropdown + id: invocation-mode + attributes: + label: InvocationMode + description: Which InvocationMode are you using? + options: + - "DBT_RUNNER" + - "SUBPROCESS" + multiple: false - type: input id: airflow-version attributes: