From ea1c4a62a4bf6bb6100c23daa0a582cb1a5cc990 Mon Sep 17 00:00:00 2001 From: Marcono1234 Date: Fri, 23 Feb 2024 02:29:20 +0100 Subject: [PATCH] Mention GitHub Discussions in README & issue creation (#2629) --- .github/ISSUE_TEMPLATE/config.yml | 3 +++ README.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index b798788d..fd8d79a7 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -2,3 +2,6 @@ contact_links: - name: Usage question url: https://stackoverflow.com/questions/tagged/gson about: Ask usage questions on StackOverflow. + - name: Questions, ideas, tips & tricks, ... + url: https://github.com/google/gson/discussions + about: Share information in GitHub Discussions. diff --git a/README.md b/README.md index 492a3240..cd127271 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Older Gson versions may also support lower API levels, however this has not been * [Releases and change log](https://github.com/google/gson/releases): Latest releases and changes in these versions; for older releases see [`CHANGELOG.md`](CHANGELOG.md) * [Design document](GsonDesignDocument.md): This document discusses issues we faced while designing Gson. It also includes a comparison of Gson with other Java libraries that can be used for Json conversion -Please use the ['gson' tag on StackOverflow](https://stackoverflow.com/questions/tagged/gson) or the [google-gson Google group](https://groups.google.com/group/google-gson) to discuss Gson or to post questions. +Please use the ['gson' tag on StackOverflow](https://stackoverflow.com/questions/tagged/gson), [GitHub Discussions](https://github.com/google/gson/discussions) or the [google-gson Google group](https://groups.google.com/group/google-gson) to discuss Gson or to post questions. ### Related Content Created by Third Parties * [Gson Tutorial](https://www.studytrails.com/java/json/java-google-json-introduction/) by `StudyTrails`