Skip to content

Commit

Permalink
Merge pull request #203 from ScalefreeCOM/tkiehn-issue-templates
Browse files Browse the repository at this point in the history
Implement Issue and Pull Request Templates
  • Loading branch information
tkirschke authored Aug 23, 2024
2 parents 094216a + 4c5acc1 commit fa7c330
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,35 @@ name: Bug report
about: Create a report to help us improve
title: "[BUG] <my bug title>"
labels: bug
assignees: tkirschke

---

**Describe the bug**

A clear and concise description of what the bug is.

**Environment**

dbt version:
datavault4dbt version:
Database/Platform:
- dbt version: _cloud/core and version number_
- datavault4dbt version:
- Database/Platform:

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

Please provide:
1. Your model's SQL
2. Your compiled model's SQL
3. The dbt error message
4. Relevant logs

**Expected behavior**

A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Log files**
If applicable, provide dbt log files which include the problem.
If applicable, add screenshots to help explain your problem.

**Additional context**

Add any other context about the problem here.
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,25 @@
name: Feature request
about: Suggest an idea for this project
title: "[FEATURE]"
labels: feature
labels: enhancement

---
**What additional value does this feature bring to the project?**

Add motivation why this feature should be integrated into the package.

**Is your feature request related to a problem? Please describe.**

A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**

A clear and concise description of what you want to happen.

**Describe alternatives you've considered**

A clear and concise description of any alternative solutions or features you've considered.

**Additional context**

Add any other context or screenshots about the feature request here.
31 changes: 31 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Description

Please include a summary of the changes and the related issue and context.

Fixes #(issue)

## Type of change

Please delete options that are not relevant.

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update

# How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce.

- [ ] Tests you ran

**Test Configuration**:
* datavault4dbt-Version:
* dbt-Version: _cloud/core, version number_
* dbt-adapter-Version:

# Checklist:

- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation or included information that needs updates (e.g. in the Wiki)

0 comments on commit fa7c330

Please sign in to comment.