From 5933634db58105635165673bc9306b986ae87382 Mon Sep 17 00:00:00 2001 From: Reuben Morais Date: Tue, 6 Apr 2021 12:32:24 +0200 Subject: [PATCH] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 40 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 8 +++++ .github/ISSUE_TEMPLATE/feature_request.md | 26 +++++++++++++++ .github/issue_template.md | 30 ----------------- 4 files changed, 74 insertions(+), 30 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md delete mode 100644 .github/issue_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..5bc8d013 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,40 @@ +--- +name: Bug report +about: Create a report to help us improve +title: 'Bug: ' +labels: bug +assignees: '' + +--- + +Welcome to the 🐸STT project! We are excited to see your interest, and appreciate your support! + +This repository is governed by the Contributor Covenant Code of Conduct. For more details, see the [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) file. + +If you've found a bug, please provide the following information: + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Run the following command '...' +2. ... +3. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Environment (please complete the following information):** +- **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)**: +- **TensorFlow installed from (our builds, or upstream TensorFlow)**: +- **TensorFlow version (use command below)**: +- **Python version**: +- **Bazel version (if compiling from source)**: +- **GCC/Compiler version (if compiling from source)**: +- **CUDA/cuDNN version**: +- **GPU model and memory**: +- **Exact command to reproduce**: + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..bc0cbcd5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: Coqui STT GitHub Discussions + url: https://github.com/coqui-ai/STT/discussions + about: Please ask and answer questions here. + - name: Coqui Security issue disclosure + url: mailto:info@coqui.ai + about: Please report security vulnerabilities here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..c47122b9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,26 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: 'Feature request: ' +labels: enhancement +assignees: '' + +--- + +Welcome to the 🐸STT project! We are excited to see your interest, and appreciate your support! + +This repository is governed by the Contributor Covenant Code of Conduct. For more details, see the [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) file. + +If you have a feature request, then please provide the following information: + +**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.md b/.github/issue_template.md deleted file mode 100644 index 364e4c87..00000000 --- a/.github/issue_template.md +++ /dev/null @@ -1,30 +0,0 @@ -# Issue guidelines - -Welcome to the 🐸STT project! We are excited to see your interest, and appreciate your support! - -This repository is governed by the Contributor Covenant Code of Conduct. For more details, see the [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) file. - -For support and discussions, please use [GitHub Discussions](https://github.com/coqui-ai/STT/discussions). - -If you've found a bug, or have a feature request, then please create an issue with the following information: - -- **Have I written custom code (as opposed to running examples on an unmodified clone of the repository)**: -- **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)**: -- **TensorFlow installed from (our builds, or upstream TensorFlow)**: -- **TensorFlow version (use command below)**: -- **Python version**: -- **Bazel version (if compiling from source)**: -- **GCC/Compiler version (if compiling from source)**: -- **CUDA/cuDNN version**: -- **GPU model and memory**: -- **Exact command to reproduce**: - -You can obtain the TensorFlow version with - -```bash -python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)" -``` - -Please describe the problem clearly. Be sure to convey here why it's a bug or a feature request. - -Include any logs or source code that would be helpful to diagnose the problem. For larger logs, link to a Gist, not a screenshot. If including tracebacks, please include the full traceback. Try to provide a reproducible test case.