From cc12d1a77d4215fa11d1797cd41e3a4bc29c9c24 Mon Sep 17 00:00:00 2001 From: realaravinth Date: Fri, 8 Jul 2022 19:51:06 +0530 Subject: [PATCH] fix: hard-code CI_COMMIT_AUTHOR_* details to avoid failures in PR builds ref: https://gitea.hostea.org/Hostea/dashboard/pulls/42 --- integration/lib.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/lib.sh b/integration/lib.sh index 7e79870..ac64d56 100755 --- a/integration/lib.sh +++ b/integration/lib.sh @@ -142,8 +142,8 @@ new_fleet_repo_init() { git init if is_ci then - git config user.email "${CI_COMMIT_AUTHOR_EMAIL}" - git config user.name "${CI_COMMIT_AUTHOR}" + git config user.email "hostea-dashobard-test@example.org" + git config user.name "hoste-dashobard-test" chmod 600 $GITEA_HOSTEA_FLEET_DEPLOY_KEY_PRIVATE fi git add README