Skip to content

Commit 11d9598

Browse files
committed
Add GitHub Issue and PR templates
1 parent 6cd19e4 commit 11d9598

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

.github/issue_template.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
*Delete irrelevant parts of this template.*
2+
3+
### For general questions:
4+
5+
Describe exactly what you did and what you want to happen.
6+
Use the questions at the bottom of this template as a guide.
7+
8+
Use Markdown syntax, particularly for code blocks: see https://help.github.com/articles/basic-writing-and-formatting-syntax/
9+
10+
### For installation issues:
11+
12+
Use a gist for screen output and logs: see https://gist.github.com/
13+
**Do not paste long output into this issue**
14+
15+
Review the install instructions at https://github.com/oracle/node-oracledb/blob/master/INSTALL.md
16+
17+
Review your output and logs. **Google any errors**
18+
Try to install in a different way. Try some potential solutions.
19+
20+
#### Answer the following questions:
21+
22+
1. What error(s) you are seeing?
23+
24+
2. What *exact* command caused the problem (e.g. what command did you try to install with)? Who were you logged in as?
25+
26+
3. What environment variables did you set? How *exactly* did you set them?
27+
28+
4. What is your version of Node.js?
29+
30+
5. What is your version of the Oracle client (e.g. Instant Client)? How was it installed? Where it is installed?
31+
32+
6. What is your OS and version?
33+
34+
7. What compiler version did you use?

.github/pull_request_template.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Thanks for contributing!
2+
3+
Before submitting PRs for node-oracledb you must have your signed *Oracle Contributor Agreement* accepted. See https://www.oracle.com/technetwork/community/oca-486395.html
4+
5+
If the problem solved is small, you may find it easier to open an Issue describing the problem and its cause so we can create the fix.
6+
7+
The bottom of your commit message must have the following line using your name and e-mail address as it appears in the OCA Signatories list.
8+
9+
```
10+
Signed-off-by: Your Name <[email protected]>
11+
```
12+
13+
This can be automatically added to pull requests by committing with:
14+
15+
```
16+
git commit --signoff
17+
````

0 commit comments

Comments
 (0)