-
Notifications
You must be signed in to change notification settings - Fork 11
60 lines (52 loc) · 1.53 KB
/
document.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# 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