From 68fdc050719f39c3a3aa10a75d8c3bbabf98bc34 Mon Sep 17 00:00:00 2001 From: Jeff Ching Date: Fri, 21 Sep 2018 11:33:52 -0700 Subject: [PATCH] Add CODEOWNERS and issue/pr templates (#470) * Add CODEOWNERS file and issue/pr templates * Fix team alias * Fix team alias --- .github/CODEOWNERS | 1 + .github/ISSUE_TEMPLATE.md | 31 +++++++++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 4 ++++ 3 files changed, 36 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..2d3555c91 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +@googleapis/yoshi-java diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 000000000..a9b523d87 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,31 @@ +Thanks for stopping by to let us know something could be better! + +Please be sure to include as much information as possible: + +#### Environment details + +- OS: +- Java version: +- google-http-java-client version: + +#### Steps to reproduce + +1. ? +2. ? + +#### Stacktrace + +``` +Any relevant stacktrace here. +``` + +#### External references such as API reference guides used + +- ? + +#### Any additional information below + +Making sure to follow these steps will guarantee the quickest resolution possible. + +Thanks! + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..3af206e9c --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,4 @@ +Fixes # (it's a good idea to open an issue first for discussion) + +- [ ] Tests pass +- [ ] Appropriate docs were updated (if necessary)