Skip to content

Bump actions/add-to-project from 0.6.1 to 1.0.0 #469

Bump actions/add-to-project from 0.6.1 to 1.0.0

Bump actions/add-to-project from 0.6.1 to 1.0.0 #469

Workflow file for this run

on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
name: Render README
jobs:
render:
name: Render README
runs-on: ubuntu-latest
timeout-minutes: 10
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-pandoc@v2
- name: Install rmarkdown, remotes, and the local package
run: |
install.packages("remotes")
remotes::install_local(".")
remotes::install_cran("rmarkdown")
shell: Rscript {0}
- name: Render README
run: Rscript -e 'rmarkdown::render("README.Rmd")'
- name: Commit results
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git commit README.md -m 'Re-build README.Rmd' || echo "No changes to commit"
git push origin || echo "No changes to commit"