Skip to content

Commit

Permalink
prevent streamlit app from going to sleep mode
Browse files Browse the repository at this point in the history
  • Loading branch information
pessini authored Jan 22, 2025
1 parent ea7b205 commit 70d688f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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

0 comments on commit 70d688f

Please sign in to comment.