dev #1

Merged
Gabriel merged 9 commits from dev into main 2025-12-23 15:55:37 +00:00
Showing only changes of commit c22686e1dd - Show all commits

15
git_automation.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
TRIGGER_FILE="/tmp/please_update"
echo "[INFO] Watching $TRIGGER_FILE..."
while true; do
if [[ -f "$TRIGGER_FILE" ]]; then
rm -f "$TRIGGER_FILE"
echo "[INFO] Triggered at $(date)"
git status
git add .
git commit -m "Committed"
git push
fi
sleep 0.5
done