Daily Empty Commit #2
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: 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 |