From ad46dd87e44ed0e8927fb6e7f2685aa0f5f1e7ea Mon Sep 17 00:00:00 2001 From: monalisa Date: Thu, 26 Oct 2023 17:38:21 +0200 Subject: [PATCH 1/8] Add github issue templates --- .github/ISSUE_TEMPLATE/cli-issue.md | 26 ++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/dabs-issue.md | 30 ++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feedback.md | 20 +++++++++++++++++++ 3 files changed, 76 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/cli-issue.md create mode 100644 .github/ISSUE_TEMPLATE/dabs-issue.md create mode 100644 .github/ISSUE_TEMPLATE/feedback.md diff --git a/.github/ISSUE_TEMPLATE/cli-issue.md b/.github/ISSUE_TEMPLATE/cli-issue.md new file mode 100644 index 00000000000..e40b00bd300 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/cli-issue.md @@ -0,0 +1,26 @@ +--- +name: CLI Issue +about: Use this to identify a issue with the CLI. +title: "Issue with `databricks xxx` command" +labels: CLI +--- + +### Describe the issue + + +### Steps to reproduce the behavior + + +### Expected Behavior + + +### Actual Behavior + + +### Is it a regression? + + +### Debug Logs + diff --git a/.github/ISSUE_TEMPLATE/dabs-issue.md b/.github/ISSUE_TEMPLATE/dabs-issue.md new file mode 100644 index 00000000000..01276b57cc2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/dabs-issue.md @@ -0,0 +1,30 @@ +--- +name: DABs Issue +about: Use this to identify an issue with Databricks Asset Bundles. +labels: DABs +title: '' +--- + +### Describe the issue + + +### Configuration + + +### Steps to reproduce the behavior + + +### Expected Behavior + + +### Actual Behavior + + +### Is it a regression? + + +### Debug Logs + diff --git a/.github/ISSUE_TEMPLATE/feedback.md b/.github/ISSUE_TEMPLATE/feedback.md new file mode 100644 index 00000000000..5b0db2b0819 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feedback.md @@ -0,0 +1,20 @@ +--- +name: "Feedback" +about: Give us general feedback about the Databricks CLI +title: '' +labels: feedback +--- + + + +## What have you liked? An +🌟 e.g. "Loved the interactive prompts!" + +## What was confusing or surprising for you? +💡 e.g. "A feature acted differently than expected." + +## Features you'd love to see in the future? +🚀 e.g. "What if databricks cli had a virtual donut shop?" + +## Any final thoughts or nuggets of wisdom? +📝 e.g. "Keep up the stellar work!" From c9bc4aec2569df0560f30fa8c767a4499bc5b4b6 Mon Sep 17 00:00:00 2001 From: monalisa Date: Thu, 26 Oct 2023 17:41:50 +0200 Subject: [PATCH 2/8] - --- .github/ISSUE_TEMPLATE/config.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000000..0086358db1e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true From b3b3c71cbcdf82434c1873ad7a02b3cbb3dcb300 Mon Sep 17 00:00:00 2001 From: monalisa Date: Fri, 27 Oct 2023 12:03:54 +0200 Subject: [PATCH 3/8] address comments --- .github/ISSUE_TEMPLATE/cli-issue.md | 4 ++-- .github/ISSUE_TEMPLATE/dabs-issue.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/cli-issue.md b/.github/ISSUE_TEMPLATE/cli-issue.md index e40b00bd300..5cd20debe28 100644 --- a/.github/ISSUE_TEMPLATE/cli-issue.md +++ b/.github/ISSUE_TEMPLATE/cli-issue.md @@ -1,7 +1,7 @@ --- name: CLI Issue -about: Use this to identify a issue with the CLI. -title: "Issue with `databricks xxx` command" +about: Use this to report an issue with the CLI. +title: '' labels: CLI --- diff --git a/.github/ISSUE_TEMPLATE/dabs-issue.md b/.github/ISSUE_TEMPLATE/dabs-issue.md index 01276b57cc2..5c6fd5b01cc 100644 --- a/.github/ISSUE_TEMPLATE/dabs-issue.md +++ b/.github/ISSUE_TEMPLATE/dabs-issue.md @@ -1,6 +1,6 @@ --- name: DABs Issue -about: Use this to identify an issue with Databricks Asset Bundles. +about: Use this to report an issue with Databricks Asset Bundles. labels: DABs title: '' --- From 32742333db2e05bbae890fd366d979316d758619 Mon Sep 17 00:00:00 2001 From: monalisa Date: Fri, 27 Oct 2023 14:17:43 +0200 Subject: [PATCH 4/8] add question for os version --- .github/ISSUE_TEMPLATE/cli-issue.md | 7 +++++-- .github/ISSUE_TEMPLATE/dabs-issue.md | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/cli-issue.md b/.github/ISSUE_TEMPLATE/cli-issue.md index 5cd20debe28..99024cbdbe6 100644 --- a/.github/ISSUE_TEMPLATE/cli-issue.md +++ b/.github/ISSUE_TEMPLATE/cli-issue.md @@ -6,7 +6,7 @@ labels: CLI --- ### Describe the issue - + ### Steps to reproduce the behavior -### Is it a regression? +### OS and CLI version + + +### Is this a regression? ### Debug Logs diff --git a/.github/ISSUE_TEMPLATE/dabs-issue.md b/.github/ISSUE_TEMPLATE/dabs-issue.md index 5c6fd5b01cc..1f3ed98765f 100644 --- a/.github/ISSUE_TEMPLATE/dabs-issue.md +++ b/.github/ISSUE_TEMPLATE/dabs-issue.md @@ -6,7 +6,7 @@ title: '' --- ### Describe the issue - + ### Configuration @@ -23,7 +23,10 @@ title: '' ### Actual Behavior -### Is it a regression? +### OS and CLI version + + +### Is this a regression? ### Debug Logs From 15a9b497f727d687ff9459ca37108a9deb037d11 Mon Sep 17 00:00:00 2001 From: monalisa Date: Fri, 27 Oct 2023 14:32:33 +0200 Subject: [PATCH 5/8] remove feedback template --- .github/ISSUE_TEMPLATE/feedback.md | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feedback.md diff --git a/.github/ISSUE_TEMPLATE/feedback.md b/.github/ISSUE_TEMPLATE/feedback.md deleted file mode 100644 index 5b0db2b0819..00000000000 --- a/.github/ISSUE_TEMPLATE/feedback.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: "Feedback" -about: Give us general feedback about the Databricks CLI -title: '' -labels: feedback ---- - - - -## What have you liked? An -🌟 e.g. "Loved the interactive prompts!" - -## What was confusing or surprising for you? -💡 e.g. "A feature acted differently than expected." - -## Features you'd love to see in the future? -🚀 e.g. "What if databricks cli had a virtual donut shop?" - -## Any final thoughts or nuggets of wisdom? -📝 e.g. "Keep up the stellar work!" From 167249b1a24f0e6afb38813714ea11254f7cd222 Mon Sep 17 00:00:00 2001 From: monalisa Date: Fri, 27 Oct 2023 17:22:37 +0200 Subject: [PATCH 6/8] add better titles --- .github/ISSUE_TEMPLATE/cli-issue.md | 2 +- .github/ISSUE_TEMPLATE/dabs-issue.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/cli-issue.md b/.github/ISSUE_TEMPLATE/cli-issue.md index 99024cbdbe6..8b273ea9b78 100644 --- a/.github/ISSUE_TEMPLATE/cli-issue.md +++ b/.github/ISSUE_TEMPLATE/cli-issue.md @@ -1,5 +1,5 @@ --- -name: CLI Issue +name: Bug report for the CLI about: Use this to report an issue with the CLI. title: '' labels: CLI diff --git a/.github/ISSUE_TEMPLATE/dabs-issue.md b/.github/ISSUE_TEMPLATE/dabs-issue.md index 1f3ed98765f..2c76d93628e 100644 --- a/.github/ISSUE_TEMPLATE/dabs-issue.md +++ b/.github/ISSUE_TEMPLATE/dabs-issue.md @@ -1,5 +1,5 @@ --- -name: DABs Issue +name: Bug report for Databricks Asset Bundles about: Use this to report an issue with Databricks Asset Bundles. labels: DABs title: '' From e6f1d0b37013ad5a716d51b047a32b005f11846b Mon Sep 17 00:00:00 2001 From: monalisa Date: Fri, 27 Oct 2023 17:28:51 +0200 Subject: [PATCH 7/8] uncomment blocks --- .github/ISSUE_TEMPLATE/cli-issue.md | 18 +++++++++--------- .github/ISSUE_TEMPLATE/dabs-issue.md | 20 ++++++++++---------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/cli-issue.md b/.github/ISSUE_TEMPLATE/cli-issue.md index 8b273ea9b78..1abb71d5914 100644 --- a/.github/ISSUE_TEMPLATE/cli-issue.md +++ b/.github/ISSUE_TEMPLATE/cli-issue.md @@ -1,29 +1,29 @@ --- -name: Bug report for the CLI +name: 🐛 Bug report for the CLI about: Use this to report an issue with the CLI. title: '' labels: CLI --- ### Describe the issue - +A clear and concise description of what the issue is ### Steps to reproduce the behavior - +2. See error ### Expected Behavior - +Clear and concise description of what should have happened ### Actual Behavior - +Clear and concise description of what actually happened ### OS and CLI version - +Please include the version of the CLI (eg: v0.1.2) and the operating system (eg: windows). You can run databricks --version to get the version of your Databricks CLI ### Is this a regression? - +Did this work in a previous version of the CLI? If so, which versions did you try? ### Debug Logs - +Output logs if you run the command with debug logs enabled. Example: databricks clusters list --log-level=debug. Redact if needed diff --git a/.github/ISSUE_TEMPLATE/dabs-issue.md b/.github/ISSUE_TEMPLATE/dabs-issue.md index 2c76d93628e..2691dbd5492 100644 --- a/.github/ISSUE_TEMPLATE/dabs-issue.md +++ b/.github/ISSUE_TEMPLATE/dabs-issue.md @@ -1,33 +1,33 @@ --- -name: Bug report for Databricks Asset Bundles +name: 🐛 Bug report for Databricks Asset Bundles about: Use this to report an issue with Databricks Asset Bundles. labels: DABs title: '' --- ### Describe the issue - +A clear and concise description of what the issue is ### Configuration - +Please provide a minimal reproducible configuration for the issue ### Steps to reproduce the behavior - +3. See error ### Expected Behavior - +Clear and concise description of what should have happened ### Actual Behavior - +Clear and concise description of what actually happened ### OS and CLI version - +Please provide the version of the CLI (eg: v0.1.2) and the operating system (eg: windows). You can run databricks --version to get the version of your Databricks CLI ### Is this a regression? - +Did this work in a previous version of the CLI? If so, which versions did you try? ### Debug Logs - +Output logs if you run the command with debug logs enabled. Example: databricks bundle deploy --log-level=debug. Redact if needed From 97718b916ebd9529c84ef8c24c5fa7a7237763c7 Mon Sep 17 00:00:00 2001 From: monalisa Date: Fri, 27 Oct 2023 17:34:00 +0200 Subject: [PATCH 8/8] remove emoji --- .github/ISSUE_TEMPLATE/cli-issue.md | 2 +- .github/ISSUE_TEMPLATE/dabs-issue.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/cli-issue.md b/.github/ISSUE_TEMPLATE/cli-issue.md index 1abb71d5914..6a8a75f74a4 100644 --- a/.github/ISSUE_TEMPLATE/cli-issue.md +++ b/.github/ISSUE_TEMPLATE/cli-issue.md @@ -1,5 +1,5 @@ --- -name: 🐛 Bug report for the CLI +name: Bug report for the CLI about: Use this to report an issue with the CLI. title: '' labels: CLI diff --git a/.github/ISSUE_TEMPLATE/dabs-issue.md b/.github/ISSUE_TEMPLATE/dabs-issue.md index 2691dbd5492..dff820265ff 100644 --- a/.github/ISSUE_TEMPLATE/dabs-issue.md +++ b/.github/ISSUE_TEMPLATE/dabs-issue.md @@ -1,5 +1,5 @@ --- -name: 🐛 Bug report for Databricks Asset Bundles +name: Bug report for Databricks Asset Bundles about: Use this to report an issue with Databricks Asset Bundles. labels: DABs title: ''