Files
2025-08-17 00:52:47 -04:00

7 lines
195 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
branch="${1:-update}"
git commit --allow-empty -m "ci: poke runner ($(date -u +%FT%TZ))" || true
git push origin "$branch"
echo "Pushed. Check Actions tab."