Skip to content

Commit 38b616f

Browse files
authored
Merge pull request #1328 from mathbunnyru/asalikhov/modern_issue_template
Use modern GitHub issue templates
2 parents 7bc02c4 + 4f09473 commit 38b616f

File tree

5 files changed

+62
-35
lines changed

5 files changed

+62
-35
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ""
5+
labels: "type:Bug"
6+
assignees: ""
7+
---
8+
9+
Hi! Thanks for using the Jupyter Docker Stacks.
10+
11+
Please answer the questions below to help us troubleshoot the problem. Please be as thorough as possible.
12+
13+
**What docker image you are using?**
14+
15+
Example: `jupyter/scipy-notebook`
16+
17+
**What complete docker command do you run to launch the container (omitting sensitive values)?**
18+
19+
Example: `docker run -it --rm -p 8888:8888 jupyter/all-spark-notebook:latest`
20+
21+
**What steps do you take once the container is running to reproduce the issue?**
22+
23+
Example:
24+
25+
1. Visit <http://localhost:8888>
26+
2. Start an R notebook
27+
3. ...
28+
29+
**What do you expect to happen?**
30+
31+
Example: ggplot output appears in my notebook.
32+
33+
**What actually happens?**
34+
35+
Example: No output is visible in the notebook and the notebook server log contains messages about ...
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ""
5+
labels: "type:Enhancement"
6+
assignees: ""
7+
---
8+
9+
Hi! Thanks for using the Jupyter Docker Stacks.
10+
11+
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.
12+
13+
**What docker images this feature is applicable to?**
14+
15+
Example: `jupyter/scipy-notebook`
16+
17+
**What changes do you propose?**
18+
19+
Example: Add a package [altair](https://altair-viz.github.io).
20+
21+
**How does this change will affect users?**
22+
23+
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.

.github/issue_template.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Build Docker Images
33
on:
44
pull_request:
55
paths-ignore:
6+
- ".github/ISSUE_TEMPLATE/**"
67
- "*.md"
78
- "binder/**"
89
- "docs/**"
@@ -13,6 +14,7 @@ on:
1314
- master
1415
- main
1516
paths-ignore:
17+
- ".github/ISSUE_TEMPLATE/**"
1618
- "*.md"
1719
- "binder/**"
1820
- "docs/**"

docs/contributing/stacks.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,14 @@ The cookiecutter template comes with a `.github/workflows/docker.yml` file, whic
8181
on:
8282
pull_request:
8383
paths-ignore:
84+
- ".github/ISSUE_TEMPLATE/**"
8485
- "*.md"
8586
push:
8687
branches:
8788
- master
8889
- main
8990
paths-ignore:
91+
- ".github/ISSUE_TEMPLATE/**"
9092
- "*.md"
9193
```
9294

0 commit comments

Comments
 (0)