Skip to content

Commit ab79c96

Browse files
authored
Update issue template (#5182)
* Write new issue template * Delete old template
1 parent 16026c5 commit ab79c96

File tree

4 files changed

+69
-13
lines changed

4 files changed

+69
-13
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

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: Submit a bug report to help us improve ggplot2
4+
---
5+
6+
### Tips for a helpful bug report:
7+
8+
* If you have a question, please don't use this form. Instead, ask on <https://stackoverflow.com/> or <https://community.rstudio.com/>.
9+
10+
* Please include a **minimal reproducible example**, a reprex, to demonstrate the bug.
11+
If you've never heard of a reprex, please read ["Make a reprex"](https://www.tidyverse.org/help/#reprex).
12+
Do not include session info unless it is explicitly asked for.
13+
14+
* If you can, use one of the built-in datasets or a small toy dataset that exposes the bug.
15+
If for some reason, the bug only occurs on your original data, try to limit the number of rows that are necessary to expose the bug.
16+
Share such data by copying `dput()` output rather than an external file.
17+
18+
* Unless the bug is about the theme, labels, scales or other plot decoration: please omit these from the code.
19+
20+
* Please check whether somebody has reported the same problem in the [issues](https://github.com/tidyverse/ggplot2/issues).
21+
22+
Delete these instructions once you have read them.
23+
24+
---
25+
26+
I found a problem with ...
27+
28+
I expected ...
29+
30+
Here is the code to reproduce the bug:
31+
32+
```r
33+
# copy your code to the clipboard and run:
34+
reprex::reprex()
35+
```

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
contact_links:
2+
- name: Help or discussion
3+
url: https://community.rstudio.com/
4+
about: "Check out options for getting help on the RStudio Community."
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: "Feature Request"
3+
about: Suggest a change or new feature in ggplot2
4+
---
5+
6+
### Tips for a helpful feature request:
7+
8+
* If you have a question, please don't use this form. Instead, ask on <https://stackoverflow.com/> or <https://community.rstudio.com/>.
9+
10+
* See the [contributing guidelines](https://github.com/tidyverse/ggplot2/blob/main/CONTRIBUTING.md).
11+
12+
* ggplot2 is a mature package that is unlikely to adopt new functionality that can be covered by its extension mechanisms.
13+
Improvements to its current functionality or to infrastructure are considered in scope for feature requests.
14+
15+
* Please motivate the need for change, if applicable with a **minimal reproducible** example (reprex).
16+
If you've never heard of a reprex, please read ["Make a reprex"](https://www.tidyverse.org/help/#reprex).
17+
Do not include session info unless it is explicitly asked for.
18+
19+
Delete this instructions once you've read them.
20+
21+
---
22+
23+
In situations when ...
24+
25+
I would like to be able to ...
26+
27+
```r
28+
# copy your code to the clipboard and run:
29+
reprex::reprex()
30+
```

ISSUE_TEMPLATE.md

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

0 commit comments

Comments
 (0)