Skip to content

keepalive

keepalive #16

Workflow file for this run

name: keepalive
on:
schedule:
- cron: "29 */6 * * *"
workflow_dispatch:
permissions:
contents: write
concurrency:
group: keepalive
cancel-in-progress: false
jobs:
refresh:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Refresh timestamp
run: |
mkdir -p "$(dirname ".github/activity.md")"
date -u +"- %Y-%m-%d %H:%M UTC keepalive" >> ".github/activity.md"
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add -A
git commit -m "chore: keepalive update" || exit 0
git push