Skip to content

Commit

Permalink
Add more fields in bug template to reduce turnaround in issue triaging (
Browse files Browse the repository at this point in the history
#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.

(cherry picked from commit 1a5cd57)
  • Loading branch information
pankajkoti authored and tatiana committed Jun 6, 2024
1 parent 042372a commit e26cc2f
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/01-bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e26cc2f

Please sign in to comment.