Some checks failed
Archive CI / build (push) Has been cancelled
Auto Deploy PR / detect-and-deploy (push) Has been cancelled
CI / build (push) Has been cancelled
Deploy to Railway / build (push) Has been cancelled
Deploy to Railway / deploy (push) Has been cancelled
Stale Issue Cleanup / stale (push) Failing after 1m12s
5 lines
176 B
Bash
Executable File
5 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
MESSAGE="${1:-Auto-commit: $(date +%Y-%m-%d\ %H:%M:%S)}"
|
|
git add -A && git commit -m "$MESSAGE" && git push 2>/dev/null || echo "⚠ Check remote"
|
|
echo "✅ Done!"
|