Skip to content

Commit 482b4f8

Browse files
committed
Use new GitHub's new templates
1 parent c614869 commit 482b4f8

7 files changed

+133
-42
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Announcements
3+
about: Use this if you are sharing something interesting
4+
title: ''
5+
labels: announcement
6+
assignees: ''
7+
8+
---
9+
10+
Let us know if you are speaking at a conference on node-oracledb, or have a new package or app that uses node-oracledb, or something similarly exciting.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
1. With the async/await programming style, make sure you are using 'await' in the right places.
11+
12+
2. Is it an error or a hang or a crash?
13+
14+
3. What error(s) you are seeing?
15+
**Cut and paste text showing the command you ran. No screenshots. Use a gist for long screen output and logs: see https://gist.github.com/**.
16+
17+
4. Include a runnable Node.js script that shows the problem.
18+
Include all SQL needed to create the database schema.
19+
20+
5. Run node and show the output of:
21+
22+
```
23+
process.platform
24+
process.version
25+
process.arch
26+
require('oracledb').versionString
27+
```
28+
29+
6. What is your Oracle Database version?
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Documentation and Example Improvements
3+
about: Use this to suggest changes to documentation and examples
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
- Include a link to the documentation section or the example
11+
12+
- Describe the confusion
13+
14+
- Suggest changes that would help
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Enhancement Requests
3+
about: Use this for enhancement requests
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
1. Review existing [enhancement requests](https://github.com/oracle/node-oracledb/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
11+
12+
2. Describe your new request in detail
13+
14+
3. Give supporting information about tools and operating systems. Give relevant product version numbers
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: General Questions and Runtime Problems
3+
about: For general node-oracledb questions
4+
title: ''
5+
labels: question
6+
assignees: ''
7+
8+
---
9+
10+
1. Review the [user manual](https://oracle.github.io/node-oracledb/doc/api.html)
11+
12+
2. Describe the problem
13+
**Cut and paste text showing the command you ran. No screenshots. Use a gist for long screen output and logs: see https://gist.github.com/**.
14+
15+
3. Include a runnable Node.js script that shows the problem.
16+
Include all SQL needed to create the database schema.
17+
18+
The more details you give, the more we can help.
19+
20+
4. Run node and show the output of:
21+
22+
```
23+
process.platform
24+
process.version
25+
process.arch
26+
require('oracledb').versionString
27+
```
28+
29+
5. What is your Oracle Database version?
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Installation Questions
3+
about: Use this for node-oracledb installation questions
4+
title: ''
5+
labels: install & configuration
6+
assignees: ''
7+
8+
---
9+
10+
# Do these first
11+
12+
- Review and follow the [installation instructions](https://oracle.github.io/node-oracledb/INSTALL.html)
13+
14+
- Review the [troubleshooting tips](https://oracle.github.io/node-oracledb/INSTALL.html#troubleshooting)
15+
16+
- If you have a `DPI-1047` error, review both the above again before opening an issue.
17+
18+
# Answer the following questions
19+
20+
1. Describe the problem and show the error you have.
21+
**Cut and paste text showing the command you ran. No screenshots. Use a gist for long screen output and logs: see https://gist.github.com/**.
22+
23+
2. What Node.js version are you using? Run node and show the output of:
24+
25+
```
26+
process.platform
27+
process.version
28+
process.arch
29+
```
30+
31+
3. Are you installing into vanilla Node.js, or using something like Electron?
32+
33+
4. Show the directory listing where your Oracle client libraries are installed (e.g. the Instant Client directory). Is it 64-bit or 32-bit?
34+
35+
5. Show what the `PATH` environment variable (on Windows) or `LD_LIBRARY_PATH` (on Linux) are set to? On macOS, show what is in `~/lib`.
36+
37+
6. Show any Oracle environment variables set (e.g. ORACLE_HOME, ORACLE_BASE).

.github/issue_template.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)