Skip to content

Keep Alive

Keep Alive #65

Workflow file for this run

name: Keep Alive
on:
schedule:
- cron: '0 */3 * * *'
workflow_dispatch:
jobs:
keepalive:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Update timestamp
run: |
echo "Last updated: $(date -u)" > .lastupdate
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add .lastupdate
git commit -m "chore: keep alive $(date +%Y-%m-%d)" || true
git push