@geravant/sinain 1.9.0 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,19 +0,0 @@
1
- #!/usr/bin/env bash
2
- # Phase 1: Git backup — commit and push any uncommitted changes in the workspace.
3
- # Runs from the workspace root. Exits 0 on success or nothing to commit, 1 on push failure.
4
-
5
- set -euo pipefail
6
-
7
- changes=$(git status --porcelain 2>/dev/null || true)
8
-
9
- if [ -z "$changes" ]; then
10
- echo "nothing to commit"
11
- exit 0
12
- fi
13
-
14
- git add -A
15
- git commit -m "auto: heartbeat $(date -u +%Y-%m-%dT%H:%M:%SZ)"
16
- git push origin main
17
-
18
- # Output the commit hash
19
- git rev-parse --short HEAD