From 5a4cb74b7d04e058045b71bbda327ac4655da4e9 Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Thu, 22 Dec 2022 19:39:32 +0100 Subject: [PATCH] Use Notice instead of Log --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index dfd890b..4f5c42d 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -64,7 +64,7 @@ _main() { _check_if_git_is_available() { if hash -- "$INPUT_INTERNAL_GIT_BINARY" 2> /dev/null; then _log "debug" "git binary found."; - _log "info" "git binary found."; + _log "notice" "git binary found."; else _log "error" "git-auto-commit could not find git binary. Please make sure git is available." exit 1;