From 70dead7ccc21212c807f521c2bdd8de89df0aa40 Mon Sep 17 00:00:00 2001 From: Miles Yucht Date: Thu, 29 Jun 2023 14:38:45 +0200 Subject: [PATCH 1/2] Update issue templates Add two basic issue templates to the Python SDK repo, one for SDK issues and one for feature requests. --- .github/ISSUE_TEMPLATE/feature_request.md | 17 ++++++++++++++ .github/ISSUE_TEMPLATE/sdk-issue.md | 27 +++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/sdk-issue.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..a4588abcb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature request +about: Suggest a new feature or improvement for the Python SDK for Databricks. +title: "[FEATURE] " +labels: '' +assignees: '' + +--- + +**Problem Statement** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Proposed Solution** +A clear and concise description of what you want to happen. + +**Additional Context** +Add any other context, references or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/sdk-issue.md b/.github/ISSUE_TEMPLATE/sdk-issue.md new file mode 100644 index 000000000..588b63e2f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/sdk-issue.md @@ -0,0 +1,27 @@ +--- +name: SDK Issue +about: Use this to report an issue with the Python SDK for Databricks. +title: "[ISSUE] " +labels: '' +assignees: '' + +--- + +**Description** +A clear and concise description of what the bug is. + +**Reproduction** +A minimal code sample demonstrating the bug. + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Debug Logs** +The SDK logs helpful debugging information when debug logging is enabled. Set the log level to debug by adding `logging.basicConfig(level=logging.DEBUG)` to your program, and include the logs here. + +**Other Information** + - OS: [e.g. macOS] + - Version: [e.g. 0.1.0] + +**Additional context** +Add any other context about the problem here. From 2f17e82eb318bf511b0526f7e2eb09365677c21d Mon Sep 17 00:00:00 2001 From: Miles Yucht Date: Thu, 29 Jun 2023 14:53:33 +0200 Subject: [PATCH 2/2] Update feature_request.md Signed-off-by: Miles Yucht --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index a4588abcb..db9ca4d72 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,5 +1,5 @@ --- -name: Feature request +name: Feature Request about: Suggest a new feature or improvement for the Python SDK for Databricks. title: "[FEATURE] " labels: ''