Skip to content

Commit 4aea786

Browse files
committed
New data collected at 2026-02-09_00-03-48
1 parent e387317 commit 4aea786

35 files changed

Lines changed: 350 additions & 106 deletions

github-actions/ggstatsplot/check-no-warnings.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818

1919
- uses: r-lib/actions/setup-r@v2
2020
with:
21-
r-version: "devel"
2221
use-public-rspm: true
2322

2423
- uses: r-lib/actions/setup-r-dependencies@v2

github-actions/ggstatsplot/html-5-check.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919

2020
- uses: r-lib/actions/setup-r@v2
2121
with:
22-
r-version: "devel"
2322
use-public-rspm: true
2423

2524
- uses: r-lib/actions/setup-r-dependencies@v2

github-actions/ggstatsplot/pkgdown.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828

2929
- uses: r-lib/actions/setup-r@v2
3030
with:
31-
r-version: "devel"
3231
use-public-rspm: true
3332

3433
- uses: r-lib/actions/setup-r-dependencies@v2

github-actions/ggstatsplot/pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v6
1616

17-
- uses: actions/setup-python@v6.1.0
17+
- uses: actions/setup-python@v6.2.0
1818
with:
1919
python-version: "3.13"
2020

github-actions/ggstatsplot/test-coverage.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,11 @@ jobs:
3131
- name: Test coverage
3232
run: |
3333
options(crayon.enabled = TRUE)
34-
covr::codecov(quiet = FALSE)
34+
cov <- covr::package_coverage()
35+
pct <- covr::percent_coverage(cov)
36+
cat(sprintf("\nCode coverage: %.2f%%\n", pct))
37+
covr::codecov(coverage = cov, quiet = FALSE)
38+
if (pct < 100) {
39+
stop(sprintf("Code coverage is %.2f%%, which is below the required 100%%", pct))
40+
}
3541
shell: Rscript {0}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252
id: get-date
5353
shell: bash
5454
run: |
55-
echo "::set-output name=year-week::$(date -u "+%Y-%U")"
56-
echo "::set-output name=date::$(date -u "+%F")"
55+
echo "year-week=$(date -u "+%Y-%U")" >> $GITHUB_OUTPUT
56+
echo "date=$(date -u "+%F")" >> $GITHUB_OUTPUT
5757
5858
- name: Restore R package cache
5959
uses: actions/cache@v4

github-actions/mlflow/autoformat-label-notify.yml

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,10 @@ jobs:
1717
permissions:
1818
pull-requests: write # to post a comment on the PR
1919
steps:
20-
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
21-
with:
22-
script: |
23-
const { owner, repo } = context.repo;
24-
const pull_number = context.payload.pull_request.number;
25-
26-
await github.rest.issues.createComment({
27-
owner,
28-
repo,
29-
issue_number: pull_number,
30-
body: 'Please use `/autoformat` command instead of labels.'
31-
});
32-
33-
await github.rest.issues.removeLabel({
34-
owner,
35-
repo,
36-
issue_number: pull_number,
37-
name: 'autoformat'
38-
});
20+
- env:
21+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
PR: ${{ github.event.pull_request.number }}
23+
REPO: ${{ github.repository }}
24+
run: |
25+
gh pr comment "$PR" --repo "$REPO" --body 'Please use `/autoformat` command instead of labels.'
26+
gh pr edit "$PR" --repo "$REPO" --remove-label autoformat

github-actions/mlflow/autoformat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
name: Autoformat
44
on:
55
issue_comment:
6-
types: [created, edited]
6+
types: [created]
77

88
defaults:
99
run:

github-actions/mlflow/cancel.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
permissions:
1818
actions: write # to cancel workflow runs
1919
steps:
20-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21-
with:
22-
sparse-checkout: |
23-
.github
24-
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
25-
with:
26-
script: |
27-
const script = require(
28-
`${process.env.GITHUB_WORKSPACE}/.github/workflows/cancel.js`
29-
);
30-
await script({ context, github });
20+
- env:
21+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
23+
REPO: ${{ github.repository }}
24+
run: |
25+
gh run list --repo "$REPO" --commit "$HEAD_SHA" --event pull_request \
26+
--json databaseId,status,name \
27+
--jq '.[] | select(.status != "completed" and .name != "release-note") | .databaseId' |
28+
while read -r run_id; do
29+
gh run cancel "$run_id" --repo "$REPO" || true
30+
done

github-actions/mlflow/cherry-picks-warn.yml

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,23 @@ jobs:
1818
permissions:
1919
pull-requests: write # to post a comment on the PR
2020
steps:
21-
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
22-
with:
23-
script: |
24-
await github.rest.issues.createComment({
25-
issue_number: context.issue.number,
26-
owner: context.repo.owner,
27-
repo: context.repo.repo,
28-
body: `# ⚠️ Important: Cherry-Pick Merge Instructions
21+
- env:
22+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
PR: ${{ github.event.pull_request.number }}
24+
REPO: ${{ github.repository }}
25+
run: |
26+
gh pr comment "$PR" --repo "$REPO" --body '# ⚠️ Important: Cherry-Pick Merge Instructions
2927
30-
**If you are cherry-picking commits to a release branch, "Rebase and merge" must be used when merging this PR, NOT "Squash and merge".**
28+
**If you are cherry-picking commits to a release branch, "Rebase and merge" must be used when merging this PR, NOT "Squash and merge".**
3129
32-
### Why "Squash and merge" causes problems:
30+
### Why "Squash and merge" causes problems:
3331
34-
- It makes reverting individual commits impossible
35-
- It removes the association between original and cherry-picked commits
36-
- It makes it difficult to track which commits have been cherry-picked
37-
- It causes incorrect results in:
38-
- [\`update-release-labels.yml\`](.github/workflows/update-release-labels.yml)
39-
- [\`update_changelog.py\`](dev/update_changelog.py)
40-
- [\`check_patch_prs.py\`](dev/check_patch_prs.py)
32+
- It makes reverting individual commits impossible
33+
- It removes the association between original and cherry-picked commits
34+
- It makes it difficult to track which commits have been cherry-picked
35+
- It causes incorrect results in:
36+
- [`update-release-labels.yml`](.github/workflows/update-release-labels.yml)
37+
- [`update_changelog.py`](dev/update_changelog.py)
38+
- [`check_patch_prs.py`](dev/check_patch_prs.py)
4139
42-
If "Rebase and merge" is disabled, follow [Configuring commit rebasing for pull requests](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-rebasing-for-pull-requests) to enable it.`
43-
});
40+
If "Rebase and merge" is disabled, follow [Configuring commit rebasing for pull requests](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-rebasing-for-pull-requests) to enable it.'

0 commit comments

Comments
 (0)