From 8a8d8c3944421259eebb52975e0a3fee672ed638 Mon Sep 17 00:00:00 2001 From: Andrii Bodnar Date: Wed, 18 Oct 2023 14:25:35 +0300 Subject: [PATCH] remove --no-verify --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 00a3462..96c105a 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -229,8 +229,8 @@ push_to_branch() { fi echo "PUSH TO BRANCH ${BRANCH}" - git commit --no-verify -m "${INPUT_COMMIT_MESSAGE}" - git push --no-verify --force "${REPO_URL}" + git commit -m "${INPUT_COMMIT_MESSAGE}" + git push --force "${REPO_URL}" if [ "$INPUT_CREATE_PULL_REQUEST" = true ]; then create_pull_request "${BRANCH}"