infrastructure/ansible/roles/renovate/files/entrypoint.sh

12 lines
128 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
while true;
do
renovate $@
echo "> Sleeping for 1 hour..."
sleep 1h &
wait $!
done