checks #1403
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
name: checks | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 * * * *' | |
jobs: | |
checks: | |
runs-on: macOS-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
steps: | |
- name: Install R. | |
uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
- name: Install helper R package. | |
run: | | |
install.packages( | |
pkgs = "multiverse.internals", | |
repos = c("https://cloud.r-project.org", "https://community.r-multiverse.org"), | |
type = "binary" | |
) | |
shell: Rscript {0} | |
- name: Check out the staging universe. | |
uses: actions/checkout@v4 | |
- name: Record versions. | |
run: | | |
multiverse.internals::record_versions( | |
versions = "versions.json", | |
repo = "https://staging.r-multiverse.org" | |
) | |
shell: Rscript {0} | |
- name: Record issues. | |
run: | | |
multiverse.internals::record_issues( | |
repo = "https://staging.r-multiverse.org", | |
versions = "versions.json", | |
output = "issues" | |
) | |
shell: Rscript {0} | |
- name: Commit and push changes. | |
run: | | |
git add versions.json | |
if [ -d issues ]; then | |
git add issues | |
fi | |
if git diff --quiet && git diff --staged --quiet; then | |
echo "No changes to commit." | |
else | |
git config --global user.name github-actions | |
git config --global user.email actions@github.com | |
git commit -m "Update issues" | |
git push -u origin main | |
fi |