Merge pull request 'new_notify' (#34) from new_notify into main

Reviewed-on: #34
This commit is contained in:
2025-10-15 12:09:20 +00:00

View File

@@ -50,4 +50,17 @@ runs:
date
sleep 5
echo "[DEBUG] Finished sleep, message should have been delivered."
date
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."