Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more fields in bug template to reduce turnaround in issue triaging #1027

Merged
merged 2 commits into from
Jun 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/01-bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,46 @@ 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
validations:
required: true
pankajkoti marked this conversation as resolved.
Show resolved Hide resolved
pankajkoti marked this conversation as resolved.
Show resolved Hide resolved
- type: input
id: airflow-version
attributes:
Expand Down
Loading