GET GitHub #1425
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
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 |