Skip to content

Commit 7c643e7

Browse files
committed
New data collected at 2025-04-28_00-02-43
1 parent cf508a8 commit 7c643e7

65 files changed

Lines changed: 378 additions & 212 deletions

Some content is hidden

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

github-actions/broom/R-CMD-check.yaml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ on:
88
push:
99
branches: [main, master]
1010
pull_request:
11-
branches: [main, master]
1211

13-
name: R-CMD-check
12+
name: R-CMD-check.yaml
13+
14+
permissions: read-all
1415

1516
jobs:
1617
R-CMD-check:
@@ -26,10 +27,12 @@ jobs:
2627

2728
- {os: windows-latest, r: 'release'}
2829

29-
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
30-
- {os: ubuntu-latest, r: 'release'}
31-
- {os: ubuntu-latest, r: 'oldrel-1'}
32-
- {os: ubuntu-latest, r: 'oldrel-2'}
30+
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
31+
- {os: ubuntu-latest, r: 'release'}
32+
- {os: ubuntu-latest, r: 'oldrel-1'}
33+
- {os: ubuntu-latest, r: 'oldrel-2'}
34+
- {os: ubuntu-latest, r: 'oldrel-3'}
35+
- {os: ubuntu-latest, r: 'oldrel-4'}
3336

3437
env:
3538
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
@@ -55,13 +58,17 @@ jobs:
5558
cobs=?ignore-before-r=4.3.0,
5659
drc=?ignore-before-r=4.3.0,
5760
emmeans=?ignore-before-r=4.3.0,
61+
Hmisc=?ignore-before-r=4.3.0,
62+
igraph=?ignore-before-r=4.3.0,
5863
joineRML=?ignore-before-r=4.3.0,
5964
lme4=?ignore-before-r=4.3.0,
6065
lsmeans=?ignore-before-r=4.3.0,
66+
mediation=?ignore-before-r=4.3.0,
6167
quantreg=?ignore-before-r=4.3.0,
6268
systemfit=?ignore-before-r=4.3.0
6369
needs: check
6470

6571
- uses: r-lib/actions/check-r-package@v2
6672
with:
6773
upload-snapshots: true
74+
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'

github-actions/broom/pkgdown.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ on:
44
push:
55
branches: [main, master]
66
pull_request:
7-
branches: [main, master]
87
release:
98
types: [published]
109
workflow_dispatch:
1110

12-
name: pkgdown
11+
name: pkgdown.yaml
12+
13+
permissions: read-all
1314

1415
jobs:
1516
pkgdown:
@@ -19,8 +20,10 @@ jobs:
1920
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
2021
env:
2122
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
23+
permissions:
24+
contents: write
2225
steps:
23-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2427

2528
- uses: r-lib/actions/setup-pandoc@v2
2629

@@ -39,7 +42,7 @@ jobs:
3942

4043
- name: Deploy to GitHub pages 🚀
4144
if: github.event_name != 'pull_request'
42-
uses: JamesIves/github-pages-deploy-action@v4.4.1
45+
uses: JamesIves/github-pages-deploy-action@v4.5.0
4346
with:
4447
clean: false
4548
branch: gh-pages
Lines changed: 52 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,85 @@
1+
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2+
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
13
on:
24
issue_comment:
35
types: [created]
4-
name: Commands
6+
7+
name: pr-commands.yaml
8+
9+
permissions: read-all
10+
511
jobs:
612
document:
7-
if: startsWith(github.event.comment.body, '/document')
13+
if: ${{ github.event.issue.pull_request && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER') && startsWith(github.event.comment.body, '/document') }}
814
name: document
9-
runs-on: macOS-latest
15+
runs-on: ubuntu-latest
1016
env:
1117
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
18+
permissions:
19+
contents: write
1220
steps:
13-
- uses: actions/checkout@v2
14-
- uses: r-lib/actions/pr-fetch@master
21+
- uses: actions/checkout@v4
22+
23+
- uses: r-lib/actions/pr-fetch@v2
1524
with:
1625
repo-token: ${{ secrets.GITHUB_TOKEN }}
17-
- uses: r-lib/actions/setup-r@master
18-
- name: Install dependencies
19-
run: Rscript -e 'install.packages(c("remotes", "roxygen2"))' -e 'remotes::install_deps(dependencies = TRUE)'
26+
27+
- uses: r-lib/actions/setup-r@v2
28+
with:
29+
use-public-rspm: true
30+
31+
- uses: r-lib/actions/setup-r-dependencies@v2
32+
with:
33+
extra-packages: any::roxygen2
34+
needs: pr-document
35+
2036
- name: Document
21-
run: Rscript -e 'roxygen2::roxygenise()'
37+
run: roxygen2::roxygenise()
38+
shell: Rscript {0}
39+
2240
- name: commit
2341
run: |
42+
git config --local user.name "$GITHUB_ACTOR"
43+
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
2444
git add man/\* NAMESPACE
2545
git commit -m 'Document'
26-
- uses: r-lib/actions/pr-push@master
46+
47+
- uses: r-lib/actions/pr-push@v2
2748
with:
2849
repo-token: ${{ secrets.GITHUB_TOKEN }}
50+
2951
style:
30-
if: startsWith(github.event.comment.body, '/style')
52+
if: ${{ github.event.issue.pull_request && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER') && startsWith(github.event.comment.body, '/style') }}
3153
name: style
32-
runs-on: macOS-latest
54+
runs-on: ubuntu-latest
3355
env:
3456
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
57+
permissions:
58+
contents: write
3559
steps:
36-
- uses: actions/checkout@v2
37-
- uses: r-lib/actions/pr-fetch@master
60+
- uses: actions/checkout@v4
61+
62+
- uses: r-lib/actions/pr-fetch@v2
3863
with:
3964
repo-token: ${{ secrets.GITHUB_TOKEN }}
40-
- uses: r-lib/actions/setup-r@master
65+
66+
- uses: r-lib/actions/setup-r@v2
67+
4168
- name: Install dependencies
42-
run: Rscript -e 'install.packages("styler")'
69+
run: install.packages("styler")
70+
shell: Rscript {0}
71+
4372
- name: Style
44-
run: Rscript -e 'styler::style_pkg()'
73+
run: styler::style_pkg()
74+
shell: Rscript {0}
75+
4576
- name: commit
4677
run: |
78+
git config --local user.name "$GITHUB_ACTOR"
79+
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
4780
git add \*.R
4881
git commit -m 'Style'
49-
- uses: r-lib/actions/pr-push@master
82+
83+
- uses: r-lib/actions/pr-push@v2
5084
with:
5185
repo-token: ${{ secrets.GITHUB_TOKEN }}

github-actions/broom/test-coverage.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,16 @@ jobs:
3434
clean = FALSE,
3535
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
3636
)
37+
print(cov)
3738
covr::to_cobertura(cov)
3839
shell: Rscript {0}
3940

40-
- uses: codecov/codecov-action@v4
41+
- uses: codecov/codecov-action@v5
4142
with:
4243
# Fail if error if not on PR, or if on PR and token is given
4344
fail_ci_if_error: ${{ github.event_name != 'pull_request' || secrets.CODECOV_TOKEN }}
44-
file: ./cobertura.xml
45-
plugin: noop
45+
files: ./cobertura.xml
46+
plugins: noop
4647
disable_search: true
4748
token: ${{ secrets.CODECOV_TOKEN }}
4849

github-actions/cli/R-CMD-check.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
push:
99
branches: [main, master]
1010
pull_request:
11-
branches: [main, master]
1211

1312
name: R-CMD-check.yaml
1413

@@ -24,11 +23,8 @@ jobs:
2423
fail-fast: false
2524
matrix:
2625
config:
27-
- {os: macos-latest, r: 'devel'}
2826
- {os: macos-latest, r: 'release'}
2927

30-
- {os: windows-latest, r: 'devel'}
31-
- {os: windows-latest, r: 'next'}
3228
- {os: windows-latest, r: 'release'}
3329
# use 4.0 or 4.1 to check with rtools40's older compiler
3430
- {os: windows-latest, r: 'oldrel-4'}

github-actions/cli/pkgdown.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches: [main, master]
66
pull_request:
7-
branches: [main, master]
87
release:
98
types: [published]
109
workflow_dispatch:

github-actions/cli/test-coverage.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches: [main, master]
66
pull_request:
7-
branches: [main, master]
87

98
name: test-coverage.yaml
109

@@ -35,14 +34,16 @@ jobs:
3534
clean = FALSE,
3635
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
3736
)
37+
print(cov)
3838
covr::to_cobertura(cov)
3939
shell: Rscript {0}
4040

41-
- uses: codecov/codecov-action@v4
41+
- uses: codecov/codecov-action@v5
4242
with:
43-
fail_ci_if_error: ${{ github.event_name != 'pull_request' && true || false }}
44-
file: ./cobertura.xml
45-
plugin: noop
43+
# Fail if error if not on PR, or if on PR and token is given
44+
fail_ci_if_error: ${{ github.event_name != 'pull_request' || secrets.CODECOV_TOKEN }}
45+
files: ./cobertura.xml
46+
plugins: noop
4647
disable_search: true
4748
token: ${{ secrets.CODECOV_TOKEN }}
4849

github-actions/crayon/R-CMD-check.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
push:
99
branches: [main, master]
1010
pull_request:
11-
branches: [main, master]
1211

1312
name: R-CMD-check.yaml
1413

github-actions/crayon/pkgdown.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches: [main, master]
66
pull_request:
7-
branches: [main, master]
87
release:
98
types: [published]
109
workflow_dispatch:

github-actions/crayon/test-coverage.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches: [main, master]
66
pull_request:
7-
branches: [main, master]
87

98
name: test-coverage.yaml
109

@@ -35,14 +34,16 @@ jobs:
3534
clean = FALSE,
3635
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
3736
)
37+
print(cov)
3838
covr::to_cobertura(cov)
3939
shell: Rscript {0}
4040

41-
- uses: codecov/codecov-action@v4
41+
- uses: codecov/codecov-action@v5
4242
with:
43-
fail_ci_if_error: ${{ github.event_name != 'pull_request' && true || false }}
44-
file: ./cobertura.xml
45-
plugin: noop
43+
# Fail if error if not on PR, or if on PR and token is given
44+
fail_ci_if_error: ${{ github.event_name != 'pull_request' || secrets.CODECOV_TOKEN }}
45+
files: ./cobertura.xml
46+
plugins: noop
4647
disable_search: true
4748
token: ${{ secrets.CODECOV_TOKEN }}
4849

0 commit comments

Comments
 (0)