Skip to content

Keep Alive

Keep Alive #33

name: Keep Alive
on:
schedule:
- cron: '37 */1 * * *' # every 1h, at minute 37
workflow_dispatch:
jobs:
ping:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Empty commit
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git commit --allow-empty -m "chore: keep alive"
git push