From 283e892cfabf53b5e0944d6b9714fea00caa0cfe Mon Sep 17 00:00:00 2001 From: Chris Wilcox Date: Thu, 28 Feb 2019 09:49:46 -0800 Subject: [PATCH 1/2] Update Issue Templates to match other google-cloud repositories --- .github/ISSUE_TEMPLATE.md | 36 ------------------- .github/ISSUE_TEMPLATE/bug_report.md | 43 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 18 ++++++++++ .github/ISSUE_TEMPLATE/support_request.md | 7 ++++ 4 files changed, 68 insertions(+), 36 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/support_request.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index b4714752d115..000000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,36 +0,0 @@ -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-cloud-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! \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000000..381cd834985a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,43 @@ +--- +name: Bug report +about: Create a report to help us improve + +--- + +Thanks for stopping by to let us know something could be better! + +**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on GitHub. This will ensure a timely response. + +Please run down the following list and make sure you've tried the usual "quick fixes": + + - Search the issues already opened: https://github.com/googleapis/google-cloud-java/issues + - Check for answers on StackOverflow: http://stackoverflow.com/questions/tagged/google-cloud-platform + +If you are still having issues, please be sure to include as much information as possible: + +#### Environment details + +1. Specify the API at the beginning of the title (for example, "BigQuery: ...") + General, Core, and Other are also allowed as types +2. OS type and version +3. Java version +4. google-cloud- version + +#### Steps to reproduce + + 1. ? + +#### Code example + +```java +// example +``` + +#### Stack trace +``` +// example +``` + +Making sure to follow these steps will guarantee the quickest resolution possible. + +Thanks! diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000000..6365857f33c6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,18 @@ +--- +name: Feature request +about: Suggest an idea for this library + +--- + +Thanks for stopping by to let us know something could be better! + +**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on GitHub. This will ensure a timely response. + + **Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + **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/ISSUE_TEMPLATE/support_request.md b/.github/ISSUE_TEMPLATE/support_request.md new file mode 100644 index 000000000000..995869032125 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/support_request.md @@ -0,0 +1,7 @@ +--- +name: Support request +about: If you have a support contract with Google, please create an issue in the Google Cloud Support console. + +--- + +**PLEASE READ**: If you have a support contract with Google, please create an issue in the [support console](https://cloud.google.com/support/) instead of filing on GitHub. This will ensure a timely response. From 2aea90c96d6296cbe32e630a1910652045a5b10d Mon Sep 17 00:00:00 2001 From: Chris Wilcox Date: Thu, 28 Feb 2019 09:54:03 -0800 Subject: [PATCH 2/2] Merge in some of the old java issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 381cd834985a..3a800b50e642 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -19,13 +19,14 @@ If you are still having issues, please be sure to include as much information as 1. Specify the API at the beginning of the title (for example, "BigQuery: ...") General, Core, and Other are also allowed as types -2. OS type and version -3. Java version -4. google-cloud- version +2. OS type and version: +3. Java version: +4. google-cloud-java version(s): #### Steps to reproduce 1. ? + 2. ? #### Code example @@ -35,9 +36,16 @@ If you are still having issues, please be sure to include as much information as #### Stack trace ``` -// example +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!