update_repo #510
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: update_repo | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 22 * * *" # https://crontab.guru/ | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v3 | |
- name: setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: install python packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install leafmap jupytext | |
- name: execute python script | |
run: | | |
python update_repo.py | |
- name: file_check | |
run: ls -l -a | |
- name: commit files | |
continue-on-error: true | |
run: | | |
today=$(date +"%Y-%m-%d") | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git add -A | |
git commit -m "Updated notebooks ${today} UTC" -a | |
git pull origin main | |
- name: push changes | |
continue-on-error: true | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: main |