opencode / .github /workflows /keep-alive.yml
abbasyk60's picture
Add keep-alive scripts and documentation
e564c3a
Raw
History Blame Contribute Delete
359 Bytes
name: Keep Space Alive
on:
schedule:
- cron: '*/5 * * * *' # Every 5 minutes
workflow_dispatch: # Allow manual trigger
jobs:
ping:
runs-on: ubuntu-latest
steps:
- name: Ping Space
run: |
curl -s -o /dev/null -w "%{http_code}" https://abbasyk60-opencode.static.hf.space
echo " - Space pinged at $(date)"