Skip to content

Commit

Permalink
Create document.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Moohan authored Aug 8, 2024
1 parent 76da562 commit 99930e4
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions workflows/document.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# 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:
workflow_call:

name: document.yaml

permissions: read-all

jobs:
document:
runs-on: ubuntu-latest
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

- name: Install dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::roxygen2
needs: roxygen2

- name: Document
run: roxygen2::roxygenise()
shell: Rscript {0}

- name: Commit and push changes
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
git add man/\* NAMESPACE DESCRIPTION
git commit -m "Update documentation" || echo "No changes to commit"
git pull --ff-only
git push origin
- name: Commit and push changes
id: commit
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
git add man/* NAMESPACE DESCRIPTION
git commit -m "Update documentation" || echo "No changes to commit"
git pull --ff-only || true
git push origin || echo "Push failed, creating a pull request"
- name: Create Pull Request
if: failure()
uses: peter-evans/create-pull-request@v4
with:
commit-message: "Update documentation"
branch: auto-update-docs
delete-branch: true
title: "Update documentation"
labels: maintenance
assignees: ${{ github.actor }}
reviewers: ${{ github.actor }}

0 comments on commit 99930e4

Please sign in to comment.