Skip to content

Commit

Permalink
Merge pull request #1328 from mathbunnyru/asalikhov/modern_issue_temp…
Browse files Browse the repository at this point in the history
…late

Use modern GitHub issue templates
  • Loading branch information
mathbunnyru authored Jun 14, 2021
2 parents 7bc02c4 + 4f09473 commit 38b616f
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 35 deletions.
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
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 <http://localhost:8888>
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 ...
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
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.
35 changes: 0 additions & 35 deletions .github/issue_template.md

This file was deleted.

2 changes: 2 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Build Docker Images
on:
pull_request:
paths-ignore:
- ".github/ISSUE_TEMPLATE/**"
- "*.md"
- "binder/**"
- "docs/**"
Expand All @@ -13,6 +14,7 @@ on:
- master
- main
paths-ignore:
- ".github/ISSUE_TEMPLATE/**"
- "*.md"
- "binder/**"
- "docs/**"
Expand Down
2 changes: 2 additions & 0 deletions docs/contributing/stacks.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,14 @@ The cookiecutter template comes with a `.github/workflows/docker.yml` file, whic
on:
pull_request:
paths-ignore:
- ".github/ISSUE_TEMPLATE/**"
- "*.md"
push:
branches:
- master
- main
paths-ignore:
- ".github/ISSUE_TEMPLATE/**"
- "*.md"
```
Expand Down

0 comments on commit 38b616f

Please sign in to comment.