Skip to content

Commit fa7c330

Browse files
authored
Merge pull request #203 from ScalefreeCOM/tkiehn-issue-templates
Implement Issue and Pull Request Templates
2 parents 094216a + 4c5acc1 commit fa7c330

File tree

3 files changed

+52
-13
lines changed

3 files changed

+52
-13
lines changed

ISSUE_TEMPLATE/bug_report.md renamed to .github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,35 @@ name: Bug report
33
about: Create a report to help us improve
44
title: "[BUG] <my bug title>"
55
labels: bug
6-
assignees: tkirschke
76

87
---
98

109
**Describe the bug**
10+
1111
A clear and concise description of what the bug is.
1212

1313
**Environment**
1414

15-
dbt version:
16-
datavault4dbt version:
17-
Database/Platform:
15+
- dbt version: _cloud/core and version number_
16+
- datavault4dbt version:
17+
- Database/Platform:
1818

1919
**To Reproduce**
20-
Steps to reproduce the behavior:
21-
1. Go to '...'
22-
2. Click on '....'
23-
3. Scroll down to '....'
24-
4. See error
20+
21+
Please provide:
22+
1. Your model's SQL
23+
2. Your compiled model's SQL
24+
3. The dbt error message
25+
4. Relevant logs
2526

2627
**Expected behavior**
28+
2729
A clear and concise description of what you expected to happen.
2830

2931
**Screenshots**
30-
If applicable, add screenshots to help explain your problem.
3132

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

3535
**Additional context**
36+
3637
Add any other context about the problem here.

ISSUE_TEMPLATE/feature_request.md renamed to .github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,25 @@
22
name: Feature request
33
about: Suggest an idea for this project
44
title: "[FEATURE]"
5-
labels: feature
5+
labels: enhancement
66

77
---
8+
**What additional value does this feature bring to the project?**
9+
10+
Add motivation why this feature should be integrated into the package.
811

912
**Is your feature request related to a problem? Please describe.**
13+
1014
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
1115

1216
**Describe the solution you'd like**
17+
1318
A clear and concise description of what you want to happen.
1419

1520
**Describe alternatives you've considered**
21+
1622
A clear and concise description of any alternative solutions or features you've considered.
1723

1824
**Additional context**
25+
1926
Add any other context or screenshots about the feature request here.

.github/pull_request_template.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Description
2+
3+
Please include a summary of the changes and the related issue and context.
4+
5+
Fixes #(issue)
6+
7+
## Type of change
8+
9+
Please delete options that are not relevant.
10+
11+
- [ ] Bug fix (non-breaking change which fixes an issue)
12+
- [ ] New feature (non-breaking change which adds functionality)
13+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
14+
- [ ] This change requires a documentation update
15+
16+
# How Has This Been Tested?
17+
18+
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce.
19+
20+
- [ ] Tests you ran
21+
22+
**Test Configuration**:
23+
* datavault4dbt-Version:
24+
* dbt-Version: _cloud/core, version number_
25+
* dbt-adapter-Version:
26+
27+
# Checklist:
28+
29+
- [ ] I have performed a self-review of my code
30+
- [ ] I have commented my code, particularly in hard-to-understand areas
31+
- [ ] I have made corresponding changes to the documentation or included information that needs updates (e.g. in the Wiki)

0 commit comments

Comments
 (0)