-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 94_pr_template_off_main
- Loading branch information
Showing
2 changed files
with
74 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Bug Report | ||
description: Something is not working correctly or is not working at all! | ||
title: "Bug: <Insert Issue Title Here>" | ||
labels: ["bug", "programming"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Example:** Bug: xportr_format() does not assign SAS format for `DATE9.` metadata | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us what were you expecting to happen before the bug? | ||
placeholder: "A bug happened!" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: session-info | ||
attributes: | ||
label: Session Information | ||
description: Use `sessionInfo()` in the R console to gather all the details of your environment when the bug happened. | ||
placeholder: "Place the console output here" | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Reproducible Example | ||
description: We love code that can reproduce the bug. Check out [reprex](https://reprex.tidyverse.org/articles/reprex-dos-and-donts.html) | ||
placeholder: "Please give us as many details as you can! The faster we can recreate the bug, the faster we can get a fix in the works. Warning, Error Messages and Screenshots are also great." | ||
validations: | ||
required: false |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Feature Request | ||
description: Enchancement to xportr functionality | ||
title: "Feature Request: <Insert Issue Title Here>" | ||
labels: ["enhancement", "programming"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this feature request! We love keeping xportr fresh! | ||
- type: textarea | ||
id: feature | ||
attributes: | ||
label: Feature Idea | ||
description: Tell us your idea in as few words as possible | ||
placeholder: "`xportr_validate` should do x, y and z" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: input | ||
attributes: | ||
label: Relevant Input | ||
description: Can you provide what the inputs should look like? | ||
placeholder: "What should the input look like? REMINDER: No patient level data or company sensitive information should be shared via this open public issue" | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: output | ||
attributes: | ||
label: Relevant Output | ||
description: Can you provide what the final output should look like? | ||
placeholder: "What should the output look like? REMINDER: No patient level data or company sensitive information should be shared via this open public issue" | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: code | ||
attributes: | ||
label: Reproducible Example/Pseudo Code | ||
description: Can you provide a working example or a sketch of how the code should work? | ||
placeholder: "We love example code and it will speed up the process! REMINDER: No patient level data or company sensitive information should be shared via this open public issue" | ||
validations: | ||
required: false |