Skip to content

Commit fbed780

Browse files
committed
Added Github supporting docs
1 parent 095a0a2 commit fbed780

5 files changed

+55
-0
lines changed

.github/ISSUE_TEMPLATE.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
### Issue description
2+
Tell us what should happen and what happens instead
3+
4+
### Example code
5+
```go
6+
If possible, please enter some example code here to reproduce the issue.
7+
```
8+
9+
### Error log
10+
```
11+
If you have an error log, please paste it here.
12+
```
13+
14+
### Configuration
15+
*Driver version (or git SHA):*
16+
17+
*Go version:* run `go version` in your console
18+
19+
*Server version:* E.g. 1.90.1
20+
21+
*Client OS:* E.g. Debian 8.1 (Jessie), Windows 10

.github/PULL_REQUEST_TEMPLATE.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
### Description
2+
Please explain the changes you made here.
3+
4+
### Checklist
5+
- [ ] Code compiles correctly
6+
- [ ] Created tests which fail without the change (if possible)
7+
- [ ] All tests passing
8+
- [ ] Extended the README / documentation, if necessary

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
sudo: false
2+
language: go
3+
go:
4+
- 1.8
5+
- tip

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Version 0.1 (TBD)
2+
3+
Initial Alpha Release

CONTRIBUTING.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Contributing Guidelines
2+
3+
## Reporting Issues
4+
5+
Before creating a new Issue, please check first if a similar Issue [already exists](https://github.com/snowflakedb/gosnowflake/issues?state=open) or was [recently closed](https://github.com/snowflakedb/gosnowflake/issues?direction=desc&page=1&sort=updated&state=closed).
6+
7+
## Contributing Code
8+
9+
By contributing to this project, you share your code under the Apache License 2, as specified in the LICENSE file.
10+
11+
### Code Review
12+
13+
Everyone is invited to review and comment on pull requests.
14+
If it looks fine to you, comment with "LGTM" (Looks good to me).
15+
16+
If changes are required, notice the reviewers with "PTAL" (Please take another look) after committing the fixes.
17+
18+
Before merging the Pull Request, at least one Snowflake team member must have commented with "LGTM".

0 commit comments

Comments
 (0)