Skip to content

GET GitHub

GET GitHub #1477

Workflow file for this run

name: GET GitHub
on:
schedule:
# At 4am every night
- cron: '0 4 * * *'
jobs:
get-data:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: npm install
- run: npm run get-github
- name: check for changes
run: git status
- name: stage changed files
run: |
git config --local user.name "ocf-bot"
git config --local user.email "[email protected]"
git add .
git commit -m "🗃 Add latest GitHub data"
- name: fetch from main
run: git fetch origin main
- name: push code to main
run: git push origin HEAD:main