From 317d0cec58dd2377ee14b404e355c0b9983ad6e3 Mon Sep 17 00:00:00 2001 From: yaron2 Date: Fri, 11 Oct 2019 10:06:11 -0700 Subject: [PATCH] templates --- .github/ISSUE_TEMPLATE/bug_report.md | 21 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/discussion.md | 8 ++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 9 +++++++++ .github/ISSUE_TEMPLATE/proposal.md | 9 +++++++++ .github/ISSUE_TEMPLATE/question.md | 9 +++++++++ .github/pull_request_template.md | 17 +++++++++++++++++ 6 files changed, 73 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/discussion.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/proposal.md create mode 100644 .github/ISSUE_TEMPLATE/question.md create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..d80830d53 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,21 @@ +--- +name: Bug report +about: Report a bug in Dapr +title: '' +labels: kind/bug +assignees: '' + +--- +## Expected Behavior + + + + +## Actual Behavior + + + + +## Steps to Reproduce the Problem + + diff --git a/.github/ISSUE_TEMPLATE/discussion.md b/.github/ISSUE_TEMPLATE/discussion.md new file mode 100644 index 000000000..60cf6e112 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/discussion.md @@ -0,0 +1,8 @@ +--- +name: Feature Request +about: Start a discussion for Dapr +title: '' +labels: kind/discussion +assignees: '' + +--- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..0c245ce6f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,9 @@ +--- +name: Feature Request +about: Create a Feature Request for Dapr +title: '' +labels: kind/enhancement +assignees: '' + +--- +## Describe the feature diff --git a/.github/ISSUE_TEMPLATE/proposal.md b/.github/ISSUE_TEMPLATE/proposal.md new file mode 100644 index 000000000..4ba74a26f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/proposal.md @@ -0,0 +1,9 @@ +--- +name: Proposal +about: Create a proposal for Dapr +title: '' +labels: kind/proposal +assignees: '' + +--- +## Describe the proposal diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 000000000..ca3bfc5ee --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,9 @@ +--- +name: Question +about: Ask a question about Dapr +title: '' +labels: kind/question +assignees: '' + +--- +## Ask your question here diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 000000000..f91a37313 --- /dev/null +++ b/.github/pull_request_template.md @@ -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