From 379d36b5954e13c51af7c096ebfc1b6163cbea41 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Tue, 16 Oct 2018 11:02:47 -0700 Subject: Update README, daily build docs, and contributing guide --- .github/CODEOWNERS | 1 - .github/ISSUE_TEMPLATE/bug_report.md | 24 ++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 17 +++++++++++++++++ .github/pull_request_template.md | 5 +++++ 4 files changed, 46 insertions(+), 1 deletion(-) delete mode 100644 .github/CODEOWNERS create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/pull_request_template.md (limited to '.github') diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index 8c310020d9..0000000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1 +0,0 @@ -* @natemcmaster @JunTaoLuo diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000000..825102492c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,24 @@ +--- +name: Bug report +about: Create a report about something that is not working +--- + +### Describe the bug +A clear and concise description of what the bug is. + +### To Reproduce +Steps to reproduce the behavior: +1. Using this version of ASP.NET Core '...' +2. Run this code '....' +3. With these arguments '....' +4. See error + +### Expected behavior +A clear and concise description of what you expected to happen. + +### Screenshots +If applicable, add screenshots to help explain your problem. + +### Additional context +Add any other context about the problem here. +Include the output of `dotnet --info` diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000000..3b4122bc71 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature request +about: Suggest an idea for this project +--- + +### Is your feature request related to a problem? Please describe. +A clear and concise description of what the problem is. +Example. I'm am trying to do [...] but [...] + +### Describe the solution you'd like +A clear and concise description of what you want to happen. + +### Describe alternatives you've considered +A clear and concise description of any alternative solutions or features you've considered. + +### Additional context +Add any other context or screenshots about the feature request here. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000000..c07fa37b2b --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,5 @@ +Summary of the changes (Less than 80 chars) + - Detail 1 + - Detail 2 + +Addresses #bugnumber (in this specific format) -- cgit v1.2.3