Skip to content

Commit 52f59e5

Browse files
committed
Issue template for Github
1 parent 7c1eb3a commit 52f59e5

File tree

4 files changed

+120
-1
lines changed

4 files changed

+120
-1
lines changed
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
name: Bug
2+
description: Report a bug or an issue you've found with dbt-oracle
3+
title: "[Bug] <title>"
4+
labels: ["bug", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: checkboxes
11+
attributes:
12+
label: Is there an existing issue for this?
13+
description: Please search to see if an issue already exists for the bug you encountered.
14+
options:
15+
- label: I have searched the existing issues
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Current Behavior
20+
description: A concise description of what you're experiencing.
21+
validations:
22+
required: false
23+
- type: textarea
24+
attributes:
25+
label: Expected Behavior
26+
description: A concise description of what you expected to happen.
27+
validations:
28+
required: false
29+
- type: textarea
30+
attributes:
31+
label: Steps To Reproduce
32+
description: Steps to reproduce the behavior.
33+
placeholder: |
34+
1. In this environment...
35+
2. With this config...
36+
3. Run '...'
37+
4. See error...
38+
validations:
39+
required: false
40+
- type: textarea
41+
id: logs
42+
attributes:
43+
label: Relevant log output using `--debug` flag enabled
44+
description: |
45+
If applicable, log output to help explain your problem.
46+
render: shell
47+
validations:
48+
required: false
49+
- type: textarea
50+
attributes:
51+
label: Environment
52+
description: |
53+
examples:
54+
- **OS**: Ubuntu 20.04
55+
- **Python**: 3.7.2 (`python --version`)
56+
- **dbt**: 0.21.0 (`dbt --version`)
57+
value: |
58+
- OS:
59+
- Python:
60+
- dbt:
61+
render: markdown
62+
validations:
63+
required: false
64+
- type: textarea
65+
id: database
66+
attributes:
67+
label: What Oracle database version are you using dbt with?
68+
description: |
69+
examples:
70+
- 19c
71+
- 21c
72+
validations:
73+
required: false
74+
- type: textarea
75+
attributes:
76+
label: Additional Context
77+
description: |
78+
Links? References? Anything that will give us more context about the issue you are encountering!
79+
80+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
81+
validations:
82+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Feature
2+
description: Suggest an idea for dbt-oracle
3+
title: "[Feature] <title>"
4+
labels: ["enhancement", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this feature request!
10+
- type: textarea
11+
attributes:
12+
label: Describe the Feature
13+
description: A clear and concise description of what you want to happen.
14+
validations:
15+
required: true
16+
- type: textarea
17+
attributes:
18+
label: Describe alternatives you've considered
19+
description: |
20+
A clear and concise description of any alternative solutions or features you've considered.
21+
validations:
22+
required: false
23+
- type: textarea
24+
attributes:
25+
label: Who will this benefit?
26+
description: |
27+
What kind of use case will this feature be useful for? Please be specific and provide examples, this will help us prioritize properly.
28+
validations:
29+
required: false
30+
- type: textarea
31+
attributes:
32+
label: Anything else?
33+
description: |
34+
Links? References? Anything that will give us more context about the feature you are suggesting!
35+
validations:
36+
required: false

doc/source/release_notes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Version 1.0.0 (May 2022)
1414
* Enhancements
1515
* Following dependencies are upgraded
1616
* cx_Oracle v8.3.0
17-
* dbt-core v1.0.4
17+
* dbt-core v1.0.6
1818
* Following development dependencies are removed
1919
* watchdog
2020
* bumpversion

0 commit comments

Comments
 (0)