Skip to content

Update data and commit changes to head branch fix #161

Update data and commit changes to head branch fix

Update data and commit changes to head branch fix #161

Workflow file for this run

# Workflow derived from https:/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https:/r-lib/actions#where-to-find-help
on:

Check failure on line 3 in .github/workflows/update-data.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/update-data.yaml

Invalid workflow file

You have an error in your yaml syntax on line 3
push:
branches-ignore:
- main
pull_request:
types:
- opened
- synchronize
name: cicd
jobs:
CICD:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Check commit message
id: check_commit_message
run: |
COMMIT_MSG=$(git log -1 --pretty=%B)
if [[ "$COMMIT_MSG" != "Update data"* ]]; then
echo "Commit message does not start with 'Update data'."
echo "result=0" >> $GITHUB_ENV
else
echo "result=1" >> $GITHUB_ENV
fi
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
any::rcmdcheck
any::pkgdown
local::.
needs: |
check
website
- uses: r-lib/actions/check-r-package@v2
- name: Update data
if: env.result == '1'
env:
HOADDATA_PASSWORD: ${{ secrets.HOADDATA_PASSWORD }}
run: |
source("data-raw/jct_001_get_cr_data.R")
shell: Rscript {0}
- name: Check package after data update
if: env.result == '1'
uses: r-lib/actions/check-r-package@v2
- name: Commit files
if: env.result == '1'
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
DATE=$(date +'%Y-%m-%d %H:%M:%S')
git add data/
git commit --allow-empty -m "Auto-update of the data package on $DATE" -a
- name: Update branch
if: env.result == '1'
run: |
git pull origin ${{ github.head_ref }}
- name: Push changes
if: env.result == '1'
uses: ad-m/github-push-action@master
with:
branch: ${{ github.head_ref }} # Push changes back to the originating branch
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Build site
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
shell: Rscript {0}
- name: Deploy to GitHub pages 🚀
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
uses: JamesIves/[email protected]
with:
clean: false
branch: gh-pages
folder: docs