-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,18 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
name: Bug Report | ||
description: File a bug report. | ||
title: 'Bug Report: <Describe bug>' | ||
labels: '' | ||
assignees: '' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Do not use this form to ask a question, or ask for assistance. Instead, ask on <https://stackoverflow.com/> using the `r-cards` tag. | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: INCLUDE a *minimal* reproducible example (AKA a reprex). If you've never heard of a [reprex](https://reprex.tidyverse.org/) before, start by reading <https://www.tidyverse.org/help/#reprex>. It'll take minutes to master creating a reprex. | ||
placeholder: Tell us what you see! | ||
value: "Brief description of the problem." | ||
validations: | ||
required: true | ||
|
||
--- | ||
|
||
Do not use this form to ask a question, or ask for assistance. Instead, ask on <https://stackoverflow.com/> using the `r-cards` tag. | ||
Questions about a function's use will be closed without a response. | ||
|
||
If you have found a bug, please briefly describe your problem and what output you expect. | ||
|
||
INCLUDE a *minimal* reproducible example (AKA a reprex). If you've never heard of a [reprex](https://reprex.tidyverse.org/) before, start by reading <https://www.tidyverse.org/help/#reprex>. It'll take minutes to master creating a reprex. | ||
|
||
--- | ||
|
||
Brief description of the problem. | ||
|
||
```r | ||
# insert reprex here | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
--- | ||
name: ✨ Feature Request | ||
description: Request or propose a new feature | ||
title: 'Feature Request: <Description>' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Do not use this form to ask a question, or ask for assistance. Instead, ask on <https://stackoverflow.com/> using the `r-cards` tag. | ||
- type: textarea | ||
id: feature | ||
attributes: | ||
label: What's the feature? | ||
description: Describe the feature and, if applicable, create a mock-up of what you'd like to see. | ||
placeholder: Tell us what you see! | ||
value: "Brief description of the feature request." | ||
validations: | ||
required: true |