Skip to content

Commit 550ba8d

Browse files
d-morrisonclaude
andcommitted
ci: lowercase runjags::findjags() in test-coverage and copilot-setup
Follow-up to the #207 Claude advisory: R-CMD-check.yaml on cran-submission was already updated to the lowercase form runjags::findjags(); test-coverage.yaml and copilot-setup-steps.yml were not. The two casings are aliases at runtime, so this is purely a consistency fix to avoid a stale-feeling diff once 0.1.0 lands. R-CMD-check.yaml itself is left alone here — it'll pick up the lowercase form (plus several other r-lib action version bumps) when cran-submission merges. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent e47ddc8 commit 550ba8d

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/copilot-setup-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
withr::local_options(warn = 2)
103103
library(rjags)
104104
library(runjags)
105-
runjags::findJAGS()
105+
runjags::findjags()
106106
runjags::testjags()
107107
shell: Rscript {0}
108108

@@ -119,7 +119,7 @@ jobs:
119119
Rscript -e 'cat("runjags version:", as.character(packageVersion("runjags")), "\n")'
120120
echo ""
121121
echo "JAGS location (from runjags):"
122-
Rscript -e 'print(runjags::findJAGS())'
122+
Rscript -e 'print(runjags::findjags())'
123123
echo ""
124124
echo "Running JAGS test:"
125125
Rscript -e 'runjags::testjags()'

.github/workflows/test-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
withr::local_options(warn = 2)
5858
library(rjags)
5959
library(runjags)
60-
runjags::findJAGS()
60+
runjags::findjags()
6161
runjags::testjags()
6262
shell: Rscript {0}
6363

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
- Grant `issues: write` and allow `gh issue` invocations so Claude
99
can file follow-up issues for work deferred out of the current PR
1010
instead of burying it in a comment.
11+
* Standardized `runjags::findjags()` casing across `test-coverage.yaml`
12+
and `copilot-setup-steps.yml` to match the `R-CMD-check.yaml` form
13+
arriving with the 0.1.0 release (#207 advisory).
1114
* Re-assign reviewers to a PR's human assignees (filtered via
1215
`type == "User"`) when Claude pushes commits during a `@claude` or
1316
`Claude Code Review` run; if Claude makes no commits, the original

0 commit comments

Comments
 (0)