Merge pull request #3 from yaron2/templates

Add issue and PR templates
This commit is contained in:
Yaron Schneider 2019-10-11 10:36:32 -07:00 committed by GitHub
commit 12b2d12f95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 73 additions and 0 deletions

21
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@ -0,0 +1,21 @@
---
name: Bug report
about: Report a bug in java-sdk
title: ''
labels: kind/bug
assignees: ''
---
## Expected Behavior
<!-- Briefly describe what you expect to happen -->
## Actual Behavior
<!-- Briefly describe what is actually happening -->
## Steps to Reproduce the Problem
<!-- How can a maintainer reproduce this issue (be detailed) -->

8
.github/ISSUE_TEMPLATE/discussion.md vendored Normal file
View File

@ -0,0 +1,8 @@
---
name: Feature Request
about: Start a discussion for java-sdk
title: ''
labels: kind/discussion
assignees: ''
---

View File

@ -0,0 +1,9 @@
---
name: Feature Request
about: Create a Feature Request for java-sdk
title: ''
labels: kind/enhancement
assignees: ''
---
## Describe the feature

9
.github/ISSUE_TEMPLATE/proposal.md vendored Normal file
View File

@ -0,0 +1,9 @@
---
name: Proposal
about: Create a proposal for java-sdk
title: ''
labels: kind/proposal
assignees: ''
---
## Describe the proposal

9
.github/ISSUE_TEMPLATE/question.md vendored Normal file
View File

@ -0,0 +1,9 @@
---
name: Question
about: Ask a question about java-sdk
title: ''
labels: kind/question
assignees: ''
---
## Ask your question here

17
.github/pull_request_template.md vendored Normal file
View File

@ -0,0 +1,17 @@
# Description
_Please explain the changes you've made_
## Issue reference
We strive to have all PR being opened based on an issue, where the problem or feature have been discussed prior to implementation.
Please reference the issue this PR will close: #_[issue number]_
## Checklist
Please make sure you've completed the relevant tasks for this PR, out of the following list:
* [ ] Code compiles correctly
* [ ] Created/updated tests
* [ ] Extended the documentation