From fea29df7d2e4a2a4119d7a84864d04f54ccd14c7 Mon Sep 17 00:00:00 2001 From: Zach Arend Date: Wed, 15 Feb 2023 09:01:24 -0800 Subject: [PATCH] docs: remove troubleshooting issue template (#25156) Remove the Troubleshooting issue template. Add contact links to StackOverflow, Gitter and Google Groups. The support request [Saved Reply](https://github.com/angular/angular/blob/main/docs/SAVED_REPLIES.md) summarizes well why issues are not the best place to help support help. >>> Hello, we reviewed this issue and determined that it doesn't fall into the bug report or feature request category. This issue tracker is not suitable for support requests, please repost your issue on [StackOverflow](https://stackoverflow.com/) using tag `angular`. If you are wondering why we don't resolve support issues via the issue tracker, please [check out this explanation](https://github.com/angular/angular/blob/main/CONTRIBUTING.md#question). (cherry picked from commit 7ba9fa79d15e8d7107b14c4408c79662cd19e706) --- .github/ISSUE_TEMPLATE/config.yml | 9 ++++ .github/ISSUE_TEMPLATE/troubleshooting.yml | 55 ---------------------- 2 files changed, 9 insertions(+), 55 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/troubleshooting.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 486735b8058b..1a5bb12d19d1 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -3,3 +3,12 @@ contact_links: - name: Angular Framework url: https://github.com/angular/angular/issues/new about: Issues and feature requests for Angular Framework + - name: StackOverflow + url: https://stackoverflow.com/questions/tagged/angular-material2 + about: Extended community of users can provide troubleshooting help + - name: Gitter + url: https://gitter.im/angular/material2 + about: Extended community of users can provide troubleshooting help + - name: Google Groups + url: https://groups.google.com/forum/#!forum/angular-material2 + about: Extended community of users can provide troubleshooting help diff --git a/.github/ISSUE_TEMPLATE/troubleshooting.yml b/.github/ISSUE_TEMPLATE/troubleshooting.yml deleted file mode 100644 index ee7801802f20..000000000000 --- a/.github/ISSUE_TEMPLATE/troubleshooting.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: Troubleshooting -description: Request for help on an issue you are facing with Angular Material or the CDK -title: 'help(COMPONENT): TITLE' -labels: ['troubleshooting', 'needs triage'] -body: - - type: markdown - attributes: - value: | - The Angular team can't provide general troubleshooting help. However, the extended community of users can provide more help: - - [StackOverflow](https://stackoverflow.com/questions/tagged/angular-material2) - - [Gitter](https://gitter.im/angular/material2) - - [Google Groups](https://groups.google.com/forum/#!forum/angular-material2) - - Issues should capture only bug reports and feature requests. However, we understand that it is not always clear whether an issue is caused by a bug or incorrect usage of a feature/component. - Most support requests will be automatically closed. If the answer is quickly obvious, though, we might be able to provide a brief answer. - - type: textarea - id: description - attributes: - label: What are you trying to do? - validations: - required: true - - type: textarea - id: troubleshooting-steps - attributes: - label: What troubleshooting steps have you tried? - description: What are you seeing that does not match your expectations? - validations: - required: true - - type: textarea - id: reproduction - attributes: - label: Reproduction - description: | - We can only help if we can reproduce the problem ourselves. - **Use StackBlitz to demonstrate what you are trying to do:** - - [Components](https://stackblitz.com/fork/components-issue) - - [Harnesses](https://stackblitz.com/fork/harness-issue) - value: | - Steps to reproduce: - 1. - 2. - validations: - required: true - - type: textarea - id: environment - attributes: - label: Environment - description: You can use `ng version` command. - value: | - - Angular: - - CDK/Material: - - Browser(s): - - Operating System (e.g. Windows, macOS, Ubuntu): - validations: - required: true