Skip to content

Commit

Permalink
Add issue templates (#539)
Browse files Browse the repository at this point in the history
## Changes
Adds Github issue templates for the Go SDK.

## Tests
<!-- 
How is this tested? Please see the checklist below and also describe any
other relevant tests
-->

- [ ] `make test` passing
- [ ] `make fmt` applied
- [ ] relevant integration tests applied
  • Loading branch information
mgyucht authored Jun 30, 2023
1 parent 44b51b5 commit 26f234e
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature Request
about: Suggest a new feature or improvement for the Go 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.
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/sdk-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: SDK Issue
about: Use this to report an issue with the Go 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 Trace by configuring the default logger to log at trace (for example: add `logger.DefaultLogger = &logger.SimpleLogger{Level: logger.LevelTrace}` 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.
3 changes: 1 addition & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: build
on:
pull_request:
types: [opened, synchronize]
paths-ignore: ['**.md']
push:
branches: [main]

Expand Down Expand Up @@ -31,7 +30,7 @@ jobs:
run: |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Pull external libraries
run: make vendor

Expand Down

0 comments on commit 26f234e

Please sign in to comment.