new_notify #34

Merged
alex merged 3 commits from new_notify into main 2025-10-15 12:09:21 +00:00
Showing only changes of commit 3738ebbf5a - Show all commits

View File

@@ -51,3 +51,16 @@ runs:
sleep 5
echo "[DEBUG] Finished sleep, message should have been delivered."
date
- name: Force wait for container cleanup
if: always()
shell: bash
run: |
echo "[DEBUG] Waiting for runner cleanup barrier..."
# пока Docker демон удаляет контейнер, удерживаем процесс активным
for i in {1..5}; do
docker ps -a | grep act || break
echo "[DEBUG] Runner still cleaning up... $i"
sleep 1
done
echo "[DEBUG] Cleanup done."