Skip to content

Commit 8d3ebed

Browse files
authored
Merge branch 'main' into copilot/fix-529
2 parents 0cd346c + 3eedea4 commit 8d3ebed

169 files changed

Lines changed: 6797 additions & 1839 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.Rbuildignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ tests\^spelling
2424
^WIP/.
2525
\.code-workspace$
2626
^CRAN-SUBMISSION$
27-
27+
.git-blame-ignore-revs
28+
GEMINI\.md
2829

2930
# flint files
3031
^flint$
32+
^[.]?air[.]toml$

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Prettier formatting changes
2+
bd3a63ec6a930375dd522f21ad180971c0fafdf8
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Bug report
2+
description: Create a report to help us improve the package
3+
title: "[Bug]: "
4+
labels: "bug :bug:"
5+
assignees: ["rempsyc"]
6+
projects: []
7+
type: Bug
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for using `{report}` and for reporting a bug! Before filing this issue, please:
13+
14+
1. **Update to the latest version**: Try updating to the latest versions of the *easystats* packages with `easystats::install_latest()`. Refresh your R session afterwards (Ctrl+Shift+F10 in RStudio).
15+
16+
2. **Search existing issues**: Check if this bug has already been [reported or fixed](https://github.com/easystats/report/issues).
17+
18+
3. **Create a reprex**: Please provide a minimal **repr**oducible **ex**ample using the [reprex](http://reprex.tidyverse.org/) package. The process of creating a reprex often helps discover the solution!
19+
20+
Please fill out the sections below to help us understand and fix the issue.
21+
22+
- type: textarea
23+
id: bug-description
24+
attributes:
25+
label: Describe the bug
26+
description: A clear and concise description of what the bug is.
27+
placeholder: Describe what happened...
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: reprex
33+
attributes:
34+
label: Reproducible example
35+
description: Please provide a minimal reproducible example (using the reprex package if possible). Also include `packageVersion("report")` and its result at the beginning of your example.
36+
placeholder: |
37+
```r
38+
library(report)
39+
packageVersion("report")
40+
‘0.6.1’
41+
# Your code here that demonstrates the bug
42+
```
43+
render: r

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/feature-idea.md

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Feature request
2+
description: Suggest a new idea or enhancement for this project
3+
title: "[Feature]: "
4+
labels: ["feature idea :fire:"]
5+
assignees: ["rempsyc"]
6+
projects: []
7+
type: Feature
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thank you for suggesting a new feature! Please provide details about your idea.
13+
14+
- type: textarea
15+
id: feature-description
16+
attributes:
17+
label: Describe the feature you'd like
18+
description: A clear and concise description of what you want to happen.
19+
placeholder: Describe your feature idea...
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
id: implementation
25+
attributes:
26+
label: Implementation ideas
27+
description: If you have ideas about how this could be implemented, please share them
28+
placeholder: How could we implement this? Any technical considerations?
29+
30+
- type: textarea
31+
id: example-code
32+
attributes:
33+
label: Example usage
34+
description: If helpful, show how you envision this feature being used
35+
placeholder: |
36+
```r
37+
library(report)
38+
# Example of how the new feature might work
39+
```
40+
render: r
41+
42+

.github/ISSUE_TEMPLATE/question.md

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Question
2+
description: Ask a question about the package usage or functionality
3+
title: "[Question]: "
4+
labels: ["question :interrobang:"]
5+
assignees: ["rempsyc"]
6+
projects: []
7+
type: Feature
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thank you for your question! Before asking, please check:
13+
14+
1. **Documentation**: Visit our [documentation site](https://easystats.github.io/report/)
15+
2. **Discussions**: Browse [existing discussions](https://github.com/easystats/report/discussions) for similar questions
16+
3. **Update packages**: Ensure you have the latest version with `easystats::install_latest()`
17+
18+
Please provide details to help us give you the best answer.
19+
20+
- type: textarea
21+
id: question
22+
attributes:
23+
label: Question
24+
description: What would you like to know?
25+
placeholder: Describe your question in detail...
26+
validations:
27+
required: true
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Copilot task
2+
description: Request GitHub Copilot assistance for development tasks
3+
title: "[Copilot]: "
4+
labels: ["robot :robot:", "copilot-setup-full"]
5+
assignees: ["Copilot"]
6+
projects: []
7+
type: Task
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Request GitHub Copilot assistance for development tasks. This template will automatically assign the issue to @copilot and allow you to specify the appropriate CI environment setup.
13+
14+
- type: textarea
15+
id: task-description
16+
attributes:
17+
label: Task description
18+
description: Describe the development task you need assistance with
19+
placeholder: |
20+
What do you need help with? Be as specific as possible about:
21+
- What needs to be implemented/fixed/changed
22+
- Any relevant context or requirements
23+
- Expected outcomes
24+
validations:
25+
required: true
26+
27+
- type: markdown
28+
attributes:
29+
value: |
30+
**Setup preference guide:**
31+
- 🔴 **copilot-setup-full** (default label): For code changes, new features, function modifications, or tasks requiring complete R development environment.
32+
- 🔵 For documentation changes, minor fixes, configuration updates, or tasks that don't require full R environment (saves 5-10 minutes), remove the **copilot-setup-full** label before creating the issue.

0 commit comments

Comments
 (0)