Skip to content

Update

Update #389

Workflow file for this run

name: Update
on:
schedule:
- cron: '18 8 * * *'
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Configure Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "modm update bot"
- name: Run update.py script
run: |
python3 update.py
- name: Git push
run: |
git push origin master
- name: Keep Alive
if: always()
uses: gautamkrishnar/keepalive-workflow@v1
with:
committer_username: modm update bot
committer_email: [email protected]