Skip to content

Add simple error handling for 404 #11

Add simple error handling for 404

Add simple error handling for 404 #11

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
paths:
- "R/**"
- "README.Rmd"
- '.github/workflows/document.yaml'
workflow_dispatch:
name: document.yaml
permissions: read-all
jobs:
document:
runs-on: ubuntu-24.04
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
r-version: 'renv'
- name: Install dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
cache-version: 2
extra-packages: |
any::roxygen2
any::devtools
needs: |
roxygen2
devtools
- name: Document
run: roxygen2::roxygenise()
shell: Rscript {0}
- name: Build readme
run: devtools::build_readme()
shell: Rscript {0}
- name: Commit and push changes
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "[email protected]"
git add man/\* NAMESPACE DESCRIPTION
git commit -m "(Github Actions): Update documentation" || echo "No changes to commit"
git pull --ff-only
git push origin