Update NGS Data #433
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
schedule: | |
# runs every day at 7:00 AM UTC = 3AM ET in jan, feb, sep-dec | |
- cron: '0 7 * 1,2,9-12 *' | |
workflow_dispatch: | |
inputs: | |
full_rebuild: | |
description: 'Full Rebuild' | |
required: true | |
default: false | |
type: boolean | |
name: update_ngs | |
jobs: | |
update: | |
name: update data | |
runs-on: macOS-latest | |
env: | |
GITHUB_PAT: ${{ secrets.NFLVERSE_GH_TOKEN }} | |
NFLVERSE_REBUILD: ${{ inputs.full_rebuild }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: r-lib/actions/setup-r@v2 | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
cache-version: 2 | |
extra-packages: | | |
nflverse/nflverse-data | |
ropensci/piggyback | |
- name: Run ngs update script | |
run: Rscript -e 'source("R/update_ngs.R")' | |
- name: Commit results | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions" | |
git pull | |
git add data | |
git commit -m "NGS data updated `date`" || echo "No changes to commit" | |
git push origin main || echo "No changes to commit" |