Skip to content

Daily Empty Commit

Daily Empty Commit #8

Workflow file for this run

name: Daily Empty Commit
on:
schedule:
- cron: '*/2 * * * *' # Runs daily at 00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Commit and Push
run: |
git config user.name "Leandro Pessini"
git config user.email "leandro@pessini.me"
git commit --allow-empty -m "Prevent streamlit from going to sleep mode"
git push origin main