Skip to content

Daily Empty Commit

Daily Empty Commit #6

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 commit --allow-empty -m "Prevent streamlit from going to sleep mode"
git push origin main