From 1ab5f548321aedb95f9458c3362dd543de8c36e4 Mon Sep 17 00:00:00 2001 From: Jeff Ching Date: Thu, 11 Oct 2018 13:56:41 -0700 Subject: [PATCH] Add CODEOWNERS and issue/pr templates --- .github/CODEOWNERS | 1 + .github/ISSUE_TEMPLATE.md | 36 ++++++++++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 1 + 3 files changed, 38 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..54221045c --- /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..531e740f3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,36 @@ +Thanks for stopping by to let us know something could be better! + +Please include as much information as possible: + +#### Environment details + +- OS: +- Java version: +- google-auth-library-java version(s): + +#### Steps to reproduce + +1. ? +2. ? + +#### Stacktrace + +``` +Any relevant stacktrace here. +``` + +#### Code snippet + +```java +Any relevant code snippet to help reproduce the issue. +``` + +#### External references such as API reference guides used + +- ? + +#### Any additional information below + +Following 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..50339744b --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1 @@ +Fixes # (it's a good idea to open an issue first for context and/or discussion)