From 07d5f0be1c0079c27b0737ec8071b8c650f16b85 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Sun, 23 May 2021 13:32:51 +0300 Subject: [PATCH] Use new issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 39 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 27 ++++++++++++++++ .github/issue_template.md | 35 -------------------- 3 files changed, 66 insertions(+), 35 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md 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..b12f2545 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,39 @@ +# Bug report + +--- + +name: Bug report +about: Create a report to help us improve +title: '' +labels: 'type: Bug' +assignees: '' + +--- + +Hi! Thanks for using the Jupyter Docker Stacks. + +Please answer the questions below to help us troubleshoot the problem. Please be as thorough as possible. + +**What docker image you are using?** + +Example: `jupyter/scipy-notebook` + +**What complete docker command do you run to launch the container (omitting sensitive values)?** + +Example: `docker run -it --rm -p 8888:8888 jupyter/all-spark-notebook:latest` + +**What steps do you take once the container is running to reproduce the issue?** + +Example: + +1. Visit +2. Start an R notebook +3. ... + +**What do you expect to happen?** + +Example: ggplot output appears in my notebook. + +**What actually happens?** + +Example: No output is visible in the notebook and the notebook server log contains messages about ... diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..3b9f744e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,27 @@ +# Feature request + +--- + +name: Feature request +about: Suggest an idea for this project +title: '' +labels: 'type: Enhancement' +assignees: '' + +--- + +Hi! Thanks for using the Jupyter Docker Stacks. + +Please see the [Suggesting a new feature](https://jupyter-docker-stacks.readthedocs.io/en/latest/contributing/features.html#suggesting-a-new-feature) section in the documentation for our preferred processes. + +**What docker images this feature is applicable to?** + +Example: `jupyter/scipy-notebook` + +**What changes do you propose?** + +Example: Add a package [altair](https://altair-viz.github.io). + +**How does this change will affect users?** + +Example: Altair is a declarative statistical visualization library for Python, based on Vega and Vega-Lite, and the source is available on GitHub. With Altair, you can spend more time understanding your data and its meaning. Altair’s API is simple, friendly and consistent and built on top of the powerful Vega-Lite visualization grammar. This elegant simplicity produces beautiful and effective visualizations with a minimal amount of code. diff --git a/.github/issue_template.md b/.github/issue_template.md deleted file mode 100644 index 141d1f08..00000000 --- a/.github/issue_template.md +++ /dev/null @@ -1,35 +0,0 @@ - - -Hi! Thanks for using the Jupyter Docker Stacks. - -Please review the following guidance about how to ask questions, contribute changes, or report bugs in the Docker images maintained here. - -1. If you have a general question about using these Docker images or with Jupyter + Docker in general, please post your question in the [Jupyter Discourse Forum](https://discourse.jupyter.org/) so that it can be seen, discussed, and hopefully answered by the community. - -2. If you are looking to contribute to the images, please see the [Contributor's Guide](https://jupyter-docker-stacks.readthedocs.io/en/latest/#) in the documentation for our preferred processes. - -3. If you are reporting an issue with one of the existing images, please answer the questions below to help us troubleshoot the problem. Please be as thorough as possible. - -**What docker image you are using?** - -Example: `jupyter/scipy-notebook` - -**What complete docker command do you run to launch the container (omitting sensitive values)?** - -Example: `docker run -it --rm -p 8888:8888 jupyter/all-spark-notebook:latest` - -**What steps do you take once the container is running to reproduce the issue?** - -Example: - -1. Visit -2. Start an R notebook -3. ... - -**What do you expect to happen?** - -Example: ggplot output appears in my notebook. - -**What actually happens?** - -Example: No output is visible in the notebook and the notebook server log contains messages about ...